我对 Objective C 和 xCode 还很陌生,所以请原谅我。
我在故事板中设置了两个视图控制器,我使用以下代码移动到另一个:
UIStoryboard * storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController * viewController = [storyBoard instantiateViewControllerWithIdentifier:@"stageOne"];
[self presentViewController:viewController animated:YES completion:nil];
现在这很好用,尽管在控制第二个视图控制器的类中我有一个属性设置,我试图将数据发送到。我正在尝试以下操作:
UIStoryboard * storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController * viewController = [storyBoard instantiateViewControllerWithIdentifier:@"stageOne"];
viewController.forename = @"Hello World";
[self presentViewController:viewController animated:YES completion:nil];
虽然这不起作用,我得到的只是一个错误“在'UIViewController'类型的对象上找不到属性'名字'”。
感谢您提供任何帮助,如果您能给我一些示例代码,那将是非常棒的。