我试图使用
swift以编程方式获取UITableViewCell对象,所以我写了这个代码
let cell:UITableViewCell = (UITableViewCell) UITableView.cellForRowAtIndexPath(indexPath.row)
但是得到编译错误为:
error image http://www.imagesup.net/?di=8140698032514
请帮忙!
解决方法
cellForRowAtIndexPath
不是一个类的方法.改用实例方法.
let cell = tableView.cellForRowAtIndexPath(indexPath)
Swift 3:
let cell = tableView.cellForRow(at: indexPath)