2016-11-22 14 views

答えて

2

問題を解決する解決策は、クラスロードメソッドでUIApplicationDidFinishLaunchingNotificationに登録することです。例えば。

+ (void)load { 
    NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter]; 
    [defaultCenter addObserver:self 
         selector:@selector(appDidLaunch) 
          name:UIApplicationDidFinishLaunchingNotification 
         object:nil]; 
} 

+ (void)appDidLaunch:(NSNotification *)notification { 
    NSDictionary *options = [notification userInfo]; 
    // Your code here 
} 
+0

ありがとうございます。 iosプッシュ通知を実装するためにこのメソッドを使用できますか?チュートリアルでは、AppDelegateファイルに実装する必要があることを示唆しています – Jibus

関連する問題