首页 > 代码库 > Swift_ uitableview使用自定义cell
Swift_ uitableview使用自定义cell
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
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。