在我的 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-推荐答案 strong>
presentModalViewController:animated: 是 UIViewController 类的方法。由于应用程序委托(delegate)不是 View Controller ,因此您不能向它发送此方法。要在屏幕上显示您的第一个 View Controller ,请将其分配给应用程序主窗口的 rootViewController 属性:
self.window.rootViewController = registerView;
关于iphone - 'AppDelegate' 没有可见的@interface 声明选择器,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11122554/
|