使用ibaction在storyboard中发送数据

时间:2014-07-24 09:51:21

标签: ios

enter image description here

我已经创建了两个表单并使用模式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];

}

0 个答案:

没有答案