您好我正在创建一个与 iOS 默认警报相关的应用程序。我在 tableView 中选择多个单元格。如果我单击后退按钮,选定的单元格将在 tableViewCell 中显示为另一个视图中的标签。我正在使用故事板。这该怎么做?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *thisCell = [tableView cellForRowAtIndexPath:indexPath];
if (thisCell.accessoryType == UITableViewCellAccessoryNone) {
thisCell.accessoryType = UITableViewCellAccessoryCheckmark;
[myIndexArray addObject:[NSString stringWithFormat:@"%d",indexPath.row]];
}
else
{
thisCell.accessoryType = UITableViewCellAccessoryNone;
for(int i=0; i<myIndexArray.count; i++)
{
if([[myIndexArray objectAtIndex:i]intValue]== indexPath.row)
{
[myIndexArray removeObjectAtIndex:i];
break;
}
}
}
}
我想要一个类似重复视图的东西,然后按返回按钮,选定的单元格显示在重复 tableViewCell 中。