我有2個帶有xib文件的類(不是在storyboard中)。當我從一個類值傳遞給另一個總是Xcode的5之前的工作,但現在它不工作的Xcode 5.我從TimeZoneViewController傳遞價值SignUpViewController如下:從一個xib傳遞到另一個的值在Xcode 5中不起作用
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」中什麼也沒有顯示。哪裏有問題?提前致謝。
嘗試切換第4行> 3以便[signUp.timeZoneLabel setText:cell.textLabel.text];然後[pushviewcontroller] – Yanchi