我正在尝试将选定的行添加到我的数组中。当我将第二个选定的行添加到 myArray 中时,第一个对象将替换为第二个对象,并且每次我在 myArray 中只获得一个对象时。这是我的表 didSelectAtIndexPath: 方法代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (cell.accessoryType == UITableViewCellAccessoryNone)
{
cell.accessoryType = UITableViewCellAccessoryCheckmark;
myArray = [[NSMutableArray alloc] init];
[myArray addObject:[Array1 objectAtIndex:indexPath.row]];
NSLog(@"myArray %@",myArray);
}
}
谁能帮我。提前致谢