如何获取tabview上所有的cell
1个回答
展开全部
//这个方法里返回一个索引数组,貌似是屏幕中显示所有cell 的索引
NSArray *arr = [tableView indexPathsForVisibleRows];
for (NSIndexPath *indexPath in arr) {
//根据索引,获取cell 然后就可以做你想做的事情啦
LeftTableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
//我这里要隐藏cell 的图片
cell.frontImage.hidden = YES;
}
NSArray *arr = [tableView indexPathsForVisibleRows];
for (NSIndexPath *indexPath in arr) {
//根据索引,获取cell 然后就可以做你想做的事情啦
LeftTableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
//我这里要隐藏cell 的图片
cell.frontImage.hidden = YES;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询