首页 > 其他 > 详细

一个页面里面有多个tableview

时间:2014-04-23 13:30:31      阅读:538      评论:0      收藏:0      [点我收藏+]

1.

tableView.tag = xxx;

switch( tableView.tag)
{
//do someting...
}

 

2.我不喜欢在同一个controller中管理多个tableview,那样会造成比较复杂的逻辑。(每个tableview方法里都有一个switch/case语句)。
建议将tableview设置为不同的controller,然后在主页面中添加这个tableview:[self.view addSubView:controller.view]; 

fromhttp://www.cocoachina.com/bbs/read.php?tid=103956

 

3.  http://www.cocoachina.com/bbs/read.php?tid=75671&keyword=%B6%E0%B8%F6tableview

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

if(tableView == tableview1)
{
cell.textLabel.text = [list1 objectAtIndex:indexPath.row];
}

if(tableView == tableview2)
{
cell.textLabel.text = [list2 objectAtIndex:indexPath.row];
}

if(tableView == tableview3)
{
cell.textLabel.text = [list3 objectAtIndex:indexPath.row];

 

一个页面里面有多个tableview,布布扣,bubuko.com

一个页面里面有多个tableview

原文:http://www.cnblogs.com/hl666/p/3681884.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!