我以为我自己弄清楚了如何做这个问题,但它不起作用。我使用的代码:
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath
{
//timedText = a NSString
[timed replaceObjectAtIndex:1 withObject:timedText];
[SpelerTable reloadData];
}
有人可以告诉我我做错了什么吗?另外,我不想使用“replaceObjectAtIndex:1”,而是使用选定的单元格。
提前致谢。