ここで本当に簡単な質問です。1 つのビューにラベルがあり、前のビューに UITableView があります。ユーザーが行を選択したときにセグエがトリガーされ、その行のテキストでラベルを更新したい。これは一例です。コードは非常に明白です。
- (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;
ラベルは更新されておらず、何をすべきかわかりません。
前もって感謝します!