有人可以解释使用UIStoryboardSegue模式与编程presentViewController之间的区别吗?
使用UIStoryboardSegue只是为了方便吗?或者有一些性能优势?
谢谢
解决方法
表现明智,没有真正的区别.
主要区别在于创建新视图控制器的位置.
使用故事板segue,对象在呈现之前从故事板中取消归档.
在代码中,您必须创建新的视图控制器,如…
ModalViewController *modal = [[ModalViewController alloc] init];
在你呈现之前……
[self presentViewController:modal animated:YES completion:nil];
它们都允许您以不同的方式注入属性.
// depends on property type etc... modal.someProperty = @"someValue";
使用segue时你会这样做……
- (void)prepareForSegue:(UIStoryBoardSegue *)segue sender:(id)sender { if ([segue.identifier isEqualToString:@"modalSegue"]) { // the view controller is already created by the segue. // just grab it here first ModalViewController *controller = segue.destinationViewController; controller.someProperty = @"someValue"; } }
有区别吗?