用TableView做的新闻客户端展示页面

用TableView做的新闻客户端展示页面

  1. //  MyTableViewImageCell.m
  2. //  SildToDo
  3. //
  4. //  Created by WildCat on 13-8-18.
  5. //  Copyright (c) 2013年 wildcat. All rights reserved.
  6. //
  7. #import "MyTableViewImageCell.h"
  8. @implementation MyTableViewImageCell
  9. @synthesize myImageView;
  10. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  11. {
  12. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  13. if (self) {
  14. // Initialization code
  15. }
  16. return self;
  17. }
  18. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  19. {
  20. [super setSelected:selected animated:animated];
  21. // Configure the view for the selected state
  22. }
  23. @end

StoryBoard:

用TableView做的新闻客户端展示页面

具体操作我就不说了挺简单,想知道的可以到新浪微博@我。

新浪微博:http://weibo.com/u/3202802157

转载请注明:
本文转自:http://blog.csdn.net/wildcatlele

上一篇:Saiku嵌入页面plugin=true效果自定义实现(二十七)


下一篇:C#动态数组ArrayList和List的比较