有人可以解释使用UIStoryboardSegue模式与编程presentViewController之间的区别吗?
@H_301_2@使用UIStoryboardSegue只是为了方便吗?或者有一些性能优势?
@H_301_2@谢谢
解决方法
表现明智,没有真正的区别.
@H_301_2@主要区别在于创建新视图控制器的位置.
@H_301_2@使用故事板segue,对象在呈现之前从故事板中取消归档.
@H_301_2@在代码中,您必须创建新的视图控制器,如…
ModalViewController *modal = [[ModalViewController alloc] init];@H_301_2@在你呈现之前……
[self presentViewController:modal animated:YES completion:nil];@H_301_2@它们都允许您以不同的方式注入属性. @H_301_2@使用代码,您将添加以上内容…
// depends on property type etc... modal.someProperty = @"someValue";@H_301_2@使用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"; } }@H_301_2@有区别吗? @H_301_2@不是真的,只是个人偏好和一些方法更容易使自己适应某些设计模式和用法.您使用的越多,您就会越了解自己喜欢哪种方法.