eXit_door 2013-05-05 18:52 采纳率: 0%
浏览 4116
已采纳

在UITableView中显示数据

NSArray中有如下数据。使用AFHTTPRequestOperation来获取结果,然后执行 [ListOfName addObject:[responseData valueForKey:name]];,想要下面的结果显示在tableView中,但是不知道怎么实现?

(
        (
        "Richard Conover",
        "Richard Conover",
        "Kaitlyn Matheson",
        "Andrea Wannemaker",
        "Andrea Wannemaker",
        test,
        james,
        test,
        gaurav,
        sdfsdfs
    )
)

如果用NSArray.count返回。如何在tableView中分开打印?

  • 写回答

1条回答 默认 最新

  • ReyZhang 移动开发领域新星创作者 2013-05-05 19:09
    关注

    1.设置UITableView的delegate,datasource

    self.tableView.delegate=self;
    self.tableView.datasource=self;
    

    2.实现协议方法

    -(NSInteger)numberOfSectionsInTableView {
         return 1;
    }
    
    -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection {
          return [ListOfName count];
    }
    
    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
         static NSString *identifier=@"cellIdentifier";
         UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:identifier];
        if (cell==nil) {
              cell=[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease];
        }
    
        cell.textLabel.text=[ListObName objectAtIndex:[indexPath row]];
        return cell;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥60 Quartusverilog 数字频率计
  • ¥15 stm32开发遇到问题
  • ¥15 请教分式规划对偶问题 ,有偿请教,价格不满意可商讨。
  • ¥15 1:500勘界地形图等高线标识规范
  • ¥15 html口算页面出错在哪和后面的优化
  • ¥15 nginx配置https遇到的问题
  • ¥30 stm32驱动CS4344发送WAV数据
  • ¥15 uniapp 画布相关操作
  • ¥15 有没有做过外汇交易MetaTrader 4平台相关业务的
  • ¥15 获取 LineSeries对象
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部