我已经实现了每次返回 0 的代码。我正在尝试从可变数组中删除一个字符串,并在按下按钮后选择行值。
相关代码:
- (IBAction)remove:(id)sender {
NSIndexPath *selectedIndexPath = [_tableView2 indexPathForSelectedRow];
[names removeObject:[NSString stringWithFormat:@"%i",selectedIndexPath.row]];
testLabel.text=[NSString stringWithFormat:@"%i",selectedIndexPath.row];
[_tableView2 reloadData];
}
每次按下按钮时,测试标签都会显示 0,无论在哪里选择 tableview。
如果您希望我发布其他相关代码(例如 tableView),请告诉我。