我在的UITableView工作,並試圖讓用戶使用此代碼UITableViewCell和UITableView重複選擇其他單元格?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSInteger row = [indexPath row];
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if(cell != nil)
{
if(cell.accessoryType == UITableViewCellAccessoryNone)
{
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else
{
cell.accessoryType = UITableViewCellAccessoryNone;
}
}
}
選擇單元格,但問題是,當在一個頁面中的細胞計數,如果你選擇單元編號1的行號1每個頁面也會被選中。
爲什麼第二個答案?你應該編輯你的第一個答案。 – EmptyStack 2011-06-03 08:29:47
謝謝!你能解釋爲什麼這解決了這個問題嗎? – 2012-08-20 13:34:59
你救了我的一天。謝謝。這解決了問題! – birdcage 2016-01-06 07:29:51