1

UITabBarControllerの前に2秒間UIViewControllerを表示しようとしていますが、appdelegateから作成する必要があることはわかっています。最初にself.window.rootviewcontrollerをUIViewControllerに割り当て、2秒後にスケジュールされたタイマーを使用してself.window.rootviewcontrollerをUITabViewControllerに再割り当てしてみました。

問題は、テストするとビューコントローラーが表示されますが、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;  

}
4

1 に答える 1

0

セレクターの後にコロンがあるため(changeView :)、アプリがクラッシュしますが、メソッドにはありません。そのコロンを削除するだけです。また、タイマー用のivarを用意する必要はなく、タイマーの作成を何かに割り当てる必要もありません。その行は次のようになります。

[NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(changeView) userInfo:nil repeats:NO];
于 2012-12-12T00:08:13.047 に答える