美文网首页
找window找VC 找storybord

找window找VC 找storybord

作者: 一束橘子 | 来源:发表于2016-06-04 20:45 被阅读26次

    1.找window *****UIWindow *window = [UIApplication sharedApplication].delegate.window;

    2.找storyboard *****UIStoryboard *storyBord = [UIStoryboard storyboardWithName:@"Main" bundle:nil];

    3.貌似用于只有一个vc?或者找初始vc *****UIViewController *VC = storyBord.instantiateInitialViewController;

    4.通过识别符,在storybord中找vc *****UIViewController *vc2 = [storyBord instantiateViewControllerWithIdentifier:@"xxx"];

    window.rootViewController = VC;

    相关文章

      网友评论

          本文标题:找window找VC 找storybord

          本文链接:https://www.haomeiwen.com/subject/ncgldttx.html