首页 > 其他 > 详细

Swift_ uitableview使用自定义cell

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!