本文主要是介绍tableView分组显示,悬挂效果,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
如图:
代码:
#pragma mark-
#pragma mark tableView
//注意,千万不要把tableView放在scrollView中,那样的话肯定会怎么设置都不会出现悬挂
//在每中组中有多少行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{return 3;
}
//多少组
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{return 10;
}
//每行显示的数
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{static NSString *CellIdentifier=@"Cell";UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:CellIdentifier];if(cell==nil){cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];}cell.textLabel.text = @"jay Chou";return cell;
}-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{return [NSString stringWithFormat:@"jay--%d",section];
}
这篇关于tableView分组显示,悬挂效果的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!