我是 iPhone 开发的新手。当我单击工具栏中的“全选”按钮时,请告诉我如何为所有单元格插入复选标记。现在我可以选择所有图像并将其存储在一个数组中,但无法为所有单元格插入复选标记。这就是我的代码现在的样子。请告诉我我必须在我的代码中做哪些更改。
-(IBAction) selectAll: (id)sender
{
[selectedZipImagesList addObjectsFromArray: zipImageslist];
NSLog(@"All images are: %@",selectedZipImagesList);
for (int s = 0; s < self.tableView.numberOfSections; s++)
{
for (int r = 0; r < [self.tableView numberOfRowsInSection:s]; r++)
{
[self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:r inSection:s] animated:NO scrollPosition:UITableViewScrollPositionNone];
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath];
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
}
}