class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
//第一种注册Cell类型的方法
// tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
// tableView.dataSource = self
// tableView.delegate = self
}
@IBAction func didShowList(sender: UIButton) {
tableView.hidden = false
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
//编译预处理指令
#if false
//第一种创建Cell的方式
//只能获取空闲的Cell,如果没有获取到,返回nil
var cell = tableView.dequeueReusableCellWithIdentifier("cell")
if cell == nil {
cell = UITableViewCell(style: .Default, reuseIdentifier: "cell")
}
#else
//第二种创建的方式
//获取空闲的Cell,如果没有获取到,根据重用标识自动创建Cell对象
let cell: UITableViewCell? = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath)
#endif
cell?.textLabel?.text = "A"
return cell!
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print(indexPath.row)
tableView.hidden = true
}
}
TableView中cell的使用
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 首先记住一点:tableview的静态cell只能在tableViewController里面使用,其次记住界面设...
- 很多时候我们会遇到这样的问题 就是关于在tableView的cell中有button 我们要对这个button添加...