标签: ios uitableview handle nsindexpath
我有一个类型为NSIndexPath *的indexPath,一个对tableView的引用,我想用这些来获取相应cell的句柄.Hp dp我这样做了吗?
答案 0 :(得分:7)
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
但请注意,如果此时相应的行不可见(或者indexPath超出表的范围),则该方法返回nil