给定NSIndexPath * iOS如何获取UITableViewCell的句柄

时间:2011-05-12 09:03:44

标签: ios uitableview handle nsindexpath

我有一个类型为NSIndexPath *的indexPath,一个对tableView的引用,我想用这些来获取相应cell的句柄.Hp dp我这样做了吗?

1 个答案:

答案 0 :(得分:7)

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

但请注意,如果此时相应的行不可见(或者indexPath超出表的范围),则该方法返回nil