我有 2 个带有 xib 文件的类(不在情节提要中)。当我将一个值从一个类传递到另一个类时,它总是在 Xcode 5 之前工作。但现在它不适用于 Xcode 5。我将值从 TimeZoneViewController 传递给 SignUpViewController,如下所示:
NSLog(@"value: %@",cell.textLabel.text);
SignUpViewController *signUp = [[SignUpViewController alloc]initWithNibName:@"SignUpViewController" bundle:nil];
[signUp.timeZoneLabel setText:cell.textLabel.text];
[self.navigationController pushViewController:signUp animated:YES];
日志显示该值,但在 SignUpViewController 出现后,它在“timeZoneLabel”中没有显示任何内容。问题出在哪里?提前致谢。