使用自制cell

来源:互联网 发布:萨德对韩国影响 知乎 编辑:程序博客网 时间:2024/04/28 18:25
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    static NSString *cellIdentify = @"MyTableViewCellIdentity";        MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentify];    if (!cell) {        [tableView registerNib:[UINib nibWithNibName:@"MyTableViewCell" bundle:nil] forCellReuseIdentifier:cellIdentify];        cell = [tableView dequeueReusableCellWithIdentifier:cellIdentify];    }        return cell;}



- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{    return 80.0;}


0 0
原创粉丝点击