黑马程序员技术交流社区

标题: UITableView-简单购物列表的实现 [打印本页]

作者: yuanlingqi    时间: 2014-11-18 22:43
标题: UITableView-简单购物列表的实现
本帖最后由 yuanlingqi 于 2014-11-18 22:46 编辑
  1. 思路:主要通过实现协议UITableViewDataSource来完成
  2. UITableViewDataSource协议必须实现2个方法:
  3. 1.- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;
  4. 该方法主要指定一个table里的section分几行展示;
  5. 2.- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
  6. 该方法主要是控制每个section里每一行需要展示的数据、图片等等,indexPath的关键信息是section的下标以及行下标,通过这两个下标确定哪一行来显示数据;

  7. 另外该协议还有个可选的实现方法:
  8. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
  9. 这个方法可以指定将表格分成多少部分,默认是1,下面来看下代码以及运行的效果图。
  10. 效果图如下:

  11. 代码如下:
  12. #import "CJPViewController.h"
  13. #import "CJPProduct.h"
  14. @interface CJPViewController ()<UITableViewDataSource>
  15. {
  16.     //对象数组
  17.     NSMutableArray *dataArray;
  18. }
  19. @end
  20. @implementation CJPViewController
  21. #pragma mark 初始化方法
  22. - (void)viewDidLoad
  23. {
  24.     [super viewDidLoad];
  25.     //初始化UITableView
  26.     UITableView *tableV = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStylePlain];
  27.     tableV.frame = CGRectMake(0, 20, self.view.bounds.size.width, self.view.bounds.size.height);
  28.     //1. 指定数据源提供类
  29.     tableV.dataSource = self;
  30.     //2. 加入视图
  31.     [self.view addSubview:tableV];
  32.     //3. 初始化数据
  33.     [self dataArrayInit];
  34. }
  35. #pragma mark section头部标题
  36. - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
  37.     return @"动物世界";
  38. }
  39. #pragma mark 设置section显示的行数
  40. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  41.     return dataArray.count;
  42. }
  43. #pragma mark 设置每行的显示数据
  44. - (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  45.     UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
  46.     CJPProduct *pro = dataArray[indexPath.row];
  47.     //设置名称
  48.     cell.textLabel.text = pro.title ;
  49.     //设置描述
  50.     cell.detailTextLabel.text = pro.desc;
  51.     //设置图片
  52.     cell.imageView.image = [UIImage imageNamed:pro.icon];
  53.     //设置右边箭头
  54.     cell.accessoryType = UITableViewCellAccessoryCheckmark;
  55.     return  cell;
  56. }
  57. #pragma mark 初始化商品数据
  58. - (void) dataArrayInit{
  59.     dataArray = [NSMutableArray array];
  60.     [dataArray addObjectsFromArray:@[
  61.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"001.png"],
  62.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"001.png"],
  63.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"001.png"],
  64.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"001.png"],
  65.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"001.png"],
  66.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"002.png"],
  67.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"003.png"],
  68.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"004.png"],
  69.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"005.png"],
  70.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"006.png"],
  71.                                      [CJPProduct productWithObjects:@"狗熊" :@"狗熊来了" :@"007.png"],
  72.                                      [CJPProduct productWithObjects:@"天猫" :@"天猫来了" :@"008.png"]]];
  73. }
  74. @end
复制代码

1.jpg (47.2 KB, 下载次数: 22)

1.jpg

作者: 邵起    时间: 2014-11-19 10:15
  1. NSO
复制代码

作者: 万雷    时间: 2014-11-19 12:27
这么 牛气
作者: breaking1800    时间: 2014-11-19 13:23
我之前用swift也搞过,3行代码解决!
作者: 3-_-3    时间: 2014-11-20 11:46
也还不错吧
作者: 冰点    时间: 2014-11-20 18:00
好厉害啊。。。你做的这些是进阶的视频里的吗?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2