首页 > 代码库 > 利用StoryBoard编写UITabelViewCell
利用StoryBoard编写UITabelViewCell
举一个炒鸡简单的例子:
1 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{2 NSString *cellIdentifier = @"ContactCell";3 HMContactRecordTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];4 // [cell setInof:nil];5 cell.nameLabel.text = @"皮卡丘";6 cell.addressLabel.text = @"四川省成都市";7 return cell;8 }
以上是使用静态例子的方法。
1 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{2 return 20;3 }
这时控制cell个数的函数,在这里写死,就20个。
在Identifier属性里,填上在上上个方法里的Identifier。
上上个方法里备注释掉的语句是写在自顶一个UITableViewCell类HMContactRecordTableViewCell中的方法。
- (void)setInof:(id)info { self.nameLabel.text = @"奥特曼"; self.telLabel.text = @"15652965058"; self.timeLabel.text = @"12:00"; self.addressLabel.text = @"四川省成都市";}
调用这个方法就可以实现设置了。
最后的效果图:
利用StoryBoard编写UITabelViewCell
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。