Swift_ uitableview使用自定义(xib)cell

前端之家收集整理的这篇文章主要介绍了Swift_ uitableview使用自定义(xib)cell前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

新建cell:


使用:

向 tableview 注册 nib

全局变量 letcellIdentifier ="myCell"

myTableView!.registerNib(UINib(nibName:"MyCell",bundle:nil),forCellReuseIdentifier:cellIdentifier)

然后在cellForRowAtIndexPath 方法中使用:

functableView(tableView:UITableView!,cellForRowAtIndexPath indexPath:NSIndexPath!) ->UITableViewCell!{

//系统cell的简单用法

//let cell = UITableViewCell(style:.Default,reuseIdentifier:"myCell")

//cell.textLabel.text = "swift cell \(indexPath.row)"

varmycell = tableView!.dequeueReusableCellWithIdentifier(cellIdentifier,forIndexPath: indexPath)

returnmycell

}

至此,一个简单地自定义cell已经实现!

原文链接:https://www.f2er.com/swift/323700.html

猜你在找的Swift相关文章