ios – 如何在应用程序启动时以模态方式呈现View Controller?

ios – 如何在应用程序启动时以模态方式呈现View Controller?,第1张

概述我创建了一个仅在我的应用首次启动时出现的屏幕;它很棒.但是,我想在我的根视图控制器上以模态方式显示此屏幕(EditorsNoteViewController是我想在首次启动时以模态方式呈现的屏幕).有谁知道我会怎么做?这是我到目前为止: Appdelegate.m - (BOOL)application:(UIApplication *)application didFinishLaunching 我创建了一个仅在我的应用首次启动时出现的屏幕;它很棒.但是,我想在我的根视图控制器上以模态方式显示此屏幕(EditorsNoteVIEwController是我想在首次启动时以模态方式呈现的屏幕).有谁知道我会怎么做?这是我到目前为止:

Appdelegate.m

- (BOol)application:(UIApplication *)application dIDFinishLaunchingWithOptions:(NSDictionary *)launchOptions        {            self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];            if ([[NSUserDefaults standardUserDefaults] boolForKey:@"HasLaunchedOnce"])            {                NSLog(@"not first launch");                      self.vIEwController = [[UIStoryboard storyboarDWithname:@"Main_iPhone" bundle:nil] instantiateVIEwControllerWithIDentifIEr:@"articlesNav"];                self.window.rootVIEwController = self.vIEwController;            }            else            {                [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"HasLaunchedOnce"];                [[NSUserDefaults standardUserDefaults] synchronize];                self.vIEwController = [[UIStoryboard storyboarDWithname:@"Main_iPhone" bundle:nil] instantiateVIEwControllerWithIDentifIEr:@"articlesNav"];                self.window.rootVIEwController = self.vIEwController;     EditorsNoteVIEwController *vc = [[EditorsNoteVIEwController alloc]init];             [self.vIEwController.navigationController presentVIEwController:vc animated:YES completion:nil];}                [self.window makeKeyAndVisible];    return YES;}
解决方法 我发现你必须打电话

[self.window makeKeyAndVisible];

在呈现视图控制器之前

总结

以上是内存溢出为你收集整理的ios – 如何在应用程序启动时以模态方式呈现View Controller?全部内容,希望文章能够帮你解决ios – 如何在应用程序启动时以模态方式呈现View Controller?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1070015.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存