美文网首页
IOS 代码跳转StoryBoard界面

IOS 代码跳转StoryBoard界面

作者: 大强哥 | 来源:发表于2016-04-26 21:58 被阅读1820次
            //将我们的storyBoard实例化,“Main”为StoryBoard的名称
            UIStoryboard *mainStoryBoard = [UIStoryboard storyboardWithName:@"Me" bundle:nil];
            
            //将第二个控制器实例化,"SecondViewController"为我们设置的控制器的ID
            ReceiptAddressVC *vc = [mainStoryBoard instantiateViewControllerWithIdentifier:@"ReceiptAddressVC"];
            [self.navigationController pushViewController:vc animated:YES];
    

    相关文章

      网友评论

          本文标题:IOS 代码跳转StoryBoard界面

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