标签:
所有列表式的数据都是用 TableView 显示的
待补充
只有 cellForRowAtIndexPath 的常规写法有些特别,这里只贴出它的例子
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)
-> UITableViewCell {
var cellId = "cellId" //属性编辑器里 给 TableViewCell 设定的 Identifier
var cell = tableView.dequeueReusableCellWithIdentifier(cellId) as UITableViewCell?
if cell == nil{
cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: cellId)
}
cell!.textLabel?.text="取出的值"
return cell!
}
iOS 开发快速导引:TableView 和 CoreData【草】
标签:
原文地址:http://www.cnblogs.com/bemxself/p/4542700.html