A solution that may solve your problem is to register for UIApplicationDidFinishLaunchingNotificationin the class loading method. For instance.
+ (void)load {
NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
[defaultCenter addObserver:self
selector:@selector(appDidLaunch)
name:UIApplicationDidFinishLaunchingNotification
object:nil];
}
+ (void)appDidLaunch:(NSNotification *)notification {
NSDictionary *options = [notification userInfo];
}
source
share