我已经创建了两个表单并使用模式n连接它们现在我想使用表单中的按钮单击将第一个表单中的文本数据发送到第二个表单。我的代码是这样的,你能不能让我知道在哪里我错了。
- (IBAction)nextPage:(UIStoryboardSegue *)sender{
NSLog(@"This is text:");
SecondViewController *showViewController = [[SecondViewController alloc] initWithNibName:@"ShowViewController" bundle:nil];
secondView.messageText = @"hello";
[self.navigationController pushViewController:showViewController animated:YES];
}