Navigation Controller と 2 つの Views Controller があります。最初の View Controller は、ViewController という名前の UIViewController に関連付けられています。2 つ目は、BookVC という名前の UIViewController に接続されています。BookVC には UITextField があり、アウトレット経由で接続されています。
@property (strong, nonatomic) IBOutlet UITextField *textFieldContent;
接続は、セグエを使用するボタンで行われます。私は2つの間でいくつかのデータを渡したいのですが、失敗する次のコードを使用しています:
-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
BookVC* nextPage = [[BookVC alloc] init];
nextPage = [segue destinationViewController];
nextPage.textFieldContent.text=@"Some content";
}
ビューコントローラー間でデータを渡すにはどうすればよいですか?