首页 > 代码库 > IOS 学习笔记 —— tableView 使用详解(一)
IOS 学习笔记 —— tableView 使用详解(一)
1 去除分割线
//去除分割线 self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
2 高度设置
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath]; return cell.frame.size.height; //自定义高度 // return 110; }
3 自定义Cell,后面会详细列出如何自定义cell,由于时间关系,这里暂时给出使用方法,如下:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { //MyCell是自己定义的Cell类 MyCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellIdentifier"]; if (!cell) { NSArray *objects = [[NSBundle mainBundle] loadNibNamed:@"MyCell" owner:self options:nil]; for (NSObject *o in objects) { if ([o isKindOfClass:[MyCell class]]) { cell = (MyCell *)o; break; } } } //Configure you cell //... return cell; }
3
IOS 学习笔记 —— tableView 使用详解(一)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。