我试图在UITabBarController之前显示一个UIViewController 2秒,我知道我必须从我的appdelegate开始。我已经尝试过第一次将我的self.window.rootviewcontroller分配给我的UIViewController并在2秒后将我的self.window.rootviewcontroller重新分配给我的UITabViewController。
问题在于,当我测试它时,我的viewcontroller显示,但在2秒后应用程序崩溃。
这是我的LaMetro_88AppDelegate.h
@interface LaMetro_88AppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate>
{
UIView *startupView;
NSTimer *timer;
UIViewController *LoadingViewController;
UITabBarController *tabBarController;
}
-(void)changeView;
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
@property (nonatomic, retain) IBOutlet UIViewController *LoadingViewController;
@end
这是我的LaMetro_88AppDelegate.m
@implementation LaMetro_88AppDelegate
@synthesize window = _window;
@synthesize tabBarController = _tabBarController;
@synthesize LoadingViewController = _LoadingViewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window.rootViewController = self.LoadingViewController;
timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(changeView:) userInfo:nil repeats:NO];
[self.window makeKeyAndVisible];
return YES;
}
-(void)changeView
{
self.window.rootViewController = self.tabBarController;
}
答案 0 :(得分:0)
您的应用程序崩溃,因为您的选择器后面有一个冒号(changeView :),而该方法没有。只需删除该冒号即可。此外,没有必要为计时器设置一个ivar,甚至不需要将计时器创建分配给任何东西 - 该行可以是:
[NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(changeView) userInfo:nil repeats:NO];