我的类与协议(UIApplicationDelegate)
@interface BangAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@end
和 BangAppDelegate 有方法
didRegisterForRemoteNotificationsWithDeviceToken
和
didFinishLaunchingWithOptions
didRegisterForRemoteNotificationsWithDeviceToken
是注册APNS的功能。
我想知道执行顺序。
首先调用哪个函数?