码迷,mamicode.com
首页 > 其他好文 > 详细

Swift_ uitableview使用自定义cell

时间:2014-07-21 10:29:38      阅读:748      评论:0      收藏:0      [点我收藏+]

标签:style   http   使用   os   2014   for   

uitableview 使用 xib 的自定义cell 

新建cell:(假如命名 MyCell)

bubuko.com,布布扣

使用:

向 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

    }




Swift_ uitableview使用自定义cell,布布扣,bubuko.com

Swift_ uitableview使用自定义cell

标签:style   http   使用   os   2014   for   

原文地址:http://my.oschina.net/u/237983/blog/289222

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!