我的脚本有错误,它不起作用。但我不知道如何改变它。我正在使用 2 个视图,我想使用 if/else 从第一个视图更改第二个视图上的 favoriteColorLabel 上的文本。如果有人知道问题,请帮助我。我的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.row==1) {
DetailVC.favoriteColorLabel=@"Bonjour";
DetailViewController *dvController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:[NSBundle mainBundle]];
dvController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:dvController animated:YES];
}
}
谢谢。