新建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