ios – UIStoryboardSegue与presentviewcontroller?

前端之家收集整理的这篇文章主要介绍了ios – UIStoryboardSegue与presentviewcontroller?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人可以解释使用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";
    }
}

有区别吗?

不是真的,只是个人偏好和一些方法更容易使自己适应某些设计模式和用法.您使用的越多,您就会越了解自己喜欢哪种方法.

原文链接:https://www.f2er.com/iOS/332929.html

猜你在找的iOS相关文章