我有一个导航控制器和 2 个视图控制器。第一个 View Controller 与一个名为 ViewController 的 UIViewController 相关联。第二个连接到一个名为 BookVC 的 UIViewController。BookVC 有一个 UITextField 并通过一个插座连接:
@property (strong, nonatomic) IBOutlet UITextField *textFieldContent;
连接是通过使用 segue 的按钮进行的。我想在两者之间传递一些数据,并使用以下代码失败:
-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
BookVC* nextPage = [[BookVC alloc] init];
nextPage = [segue destinationViewController];
nextPage.textFieldContent.text=@"Some content";
}
我应该如何在视图控制器之间传递数据?