tableView学习

来源:互联网 发布:python 电商b2b2c系统 编辑:程序博客网 时间:2024/05/21 09:32

自定义cell时,一般在一个单独的 .xib文件中 设计
设置 Custom Class
设置reused id
向tableview中注册 .xib中的cell

    override func viewDidLoad() {        super.viewDidLoad()        self.tableView.registerNib(UINib(nibName: "nibname", bundle: nil), forCellReuseIdentifier: "reusedID")        }
    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {        let cell = tableView.dequeueReusableCellWithIdentifier("event", forIndexPath: indexPath)        ...        return cell    }

tableview的数据源模型一般为可变的(可能需要删除功能)
删除数据时,需要先从数据源中删除,再删除表中cell或section

self.dataArray.removeAtIndex(indexPath.row)tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)

Cocoa框架里的功能强大的类NSFetchedResultsController,用于绑定CoreData数据和UITableView或者UICollectionView,直接封装好所有的UI操作代码,只要数据有变动,UI自动更新,

0 0
原创粉丝点击