iOS基础控件iOS Developer LeagueUITableVIew

iOS学习之 UITableVIew cell 创建方式(XIB

2015-09-10  本文已影响8725人  马文涛

UITableView

}
```

{
// 1.先去缓存池中查找可循环利用的cell
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

// 2.设置数据
cell.textLabel.text = [NSString stringWithFormat:@"%zd行的数据", indexPath.row];

return cell;

}
```

上一篇下一篇

猜你喜欢

热点阅读