OStack程序员社区-中国程序员成长平台

标题: iphone - 'AppDelegate' 没有可见的@interface 声明选择器 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 14:14
标题: iphone - 'AppDelegate' 没有可见的@interface 声明选择器


在我的 tabBar 出现之前,我现在正在编写一个注册屏幕。我的想法是通过这种方法显示我的注册屏幕(暂时没有关闭功能):

- (BOOL)applicationUIApplication *)application didFinishLaunchingWithOptionsNSDictionary *)launchOptions
{
// Override point for customization after application launch.

Register *registerView =  [[Register alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:registerView animated:YES];

return YES;
}

在 AppDelegate.m 中
不幸的是,它不起作用。你能帮我解决这个问题吗?



Best Answer-推荐答案


presentModalViewController:animated:UIViewController 类的方法。由于应用程序委托(delegate)不是 View Controller ,因此您不能向它发送此方法。要在屏幕上显示您的第一个 View Controller ,请将其分配给应用程序主窗口的 rootViewController 属性:

self.window.rootViewController = registerView;

关于iphone - 'AppDelegate' 没有可见的@interface 声明选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11122554/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4