黑马程序员技术交流社区
标题:
这一段程序主要是什么作用,求分享
[打印本页]
作者:
onlyxiao
时间:
2016-1-9 09:56
标题:
这一段程序主要是什么作用,求分享
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cmcc"];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cmcc"];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 100;
}
作者:
ff774411
时间:
2016-1-9 13:27
这是uitableview的两个代理方法,是必须要实现的。
第一个是cell,也是行内容,主要涉及到了cell的重用。
第二个是一共有多少行
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2