iPad:遍历UITableView中的每个单元格吗?
最佳答案
for (int section = 0; section < [tableView numberOfSections]; section++) {
for (int row = 0; row < [tableView numberOfRowsInSection:section]; row++) {
NSIndexPath* cellPath = [NSIndexPath indexPathForRow:row inSection:section];
UITableViewCell* cell = [tableView cellForRowAtIndexPath:cellPath];
//do stuff with 'cell'
}
}
关于ipad - iPad:遍历UITableView中的每个单元格吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5644635/