这里有一个非常简单的问题。我在一个视图上有一个标签,在前一个视图上有一个 UITableView。当用户选择该行并且我希望使用该行中的文本更新标签时,我触发了一个 segue。这是一个例子,代码很明显。
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSString *countrySelection;
switch (indexPath.section) {
case kFirstSection:
countrySelection = [[NSString alloc]
initWithFormat:@"The country you have chosen is %@",
[self.MyCountries objectAtIndex: indexPath.row]];
[self performSegueWithIdentifier:@"doneResults" sender:self];
self.countryResult.text = countrySelection;
break;
标签没有更新,我只是不知道应该做什么。
提前致谢!