一般的话- (UITableViewCell )tableView:(UITableView )tableView cellForRowAtIndexPath:(NSIndexPath )indexPath 这个方法里应该都会设置cell内的显示内容,在didselect里面你把上面那个方法里的[xxxx objectAtIndex:indexPathrow] xxxxx]再次赋给你自己要取指的对象不就可以了么
可以使用自定义的cell,然后往里面放label,为label赋tag值,通过tag值去获取label,然后获取label中的内容。
例:UILabel textLabel = [cell viewWithTag:10];
NSString text = textLabeltext;
一般的话- (UITableViewCell )tableView:(UITableView )tableView cellForRowAtIndexPath:(NSIndexPath )indexPath 这个方法里应该都会设置cell内的显示内容,在didselect里面你把上面那个方法里的[xxxx objectAtIndex:indexPathrow] xxxxx]再次赋给你自己要取指的对象不就可以了么
干嘛要获取cell对象放到数组里面,直接获取想要cell的indexPath放进数组,用的时候用- (UITableViewCell )cellForRowAtIndexPath:(NSIndexPath )indexPath 读取不就好了
以上就是关于如何获取UITableView所有的cell全部的内容,包括:如何获取UITableView所有的cell、ios 得到点击cell里的内容、如何获取点击的UITableView的cell的内容等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)