uitableview 使用 xib 的自定义cell
新建cell:(假如命名 MyCell)
使用:
向 tableview 注册 nib
全局变量 let cellIdentifier = "myCell"
myTableView!.registerNib(UINib(nibName: "MyCell", bundle:nil), forCellReuseIdentifier: cellIdentifier)
然后在 cellForRowAtIndexPath 方法中使用:
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath:NSIndexPath!) -> UITableViewCell!{
// 系统 cell 的简单用法
//let cell = UITableViewCell(style:.Default, reuseIdentifier:"myCell")
//cell.textLabel.text = "swift cell \(indexPath.row)"
var mycell : MyCell = tableView!.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as MyCell
return mycell
}
转载于:https://my.oschina.net/u/237983/blog/289222