File tree Expand file tree Collapse file tree 4 files changed +2
-6
lines changed
Framework/OneSignal.framework/Versions/A Expand file tree Collapse file tree 4 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,8 @@ typedef NS_ENUM(NSUInteger, ONE_S_LOG_LEVEL) {
67
67
68
68
- (id )initWithLaunchOptions : (NSDictionary *)launchOptions appId : (NSString *)appId handleNotification : (OneSignalHandleNotificationBlock)callback ;
69
69
70
+ - (id )initWithLaunchOptions : (NSDictionary *)launchOptions handleNotification : (OneSignalHandleNotificationBlock)callback autoRegister : (BOOL )autoRegister ;
71
+
70
72
- (id )initWithLaunchOptions : (NSDictionary *)launchOptions appId : (NSString *)appId handleNotification : (OneSignalHandleNotificationBlock)callback autoRegister : (BOOL )autoRegister ;
71
73
72
74
// Only use if you passed FALSE to autoRegister
Original file line number Diff line number Diff line change @@ -69,8 +69,6 @@ typedef NS_ENUM(NSUInteger, ONE_S_LOG_LEVEL) {
69
69
70
70
- (id )initWithLaunchOptions : (NSDictionary *)launchOptions handleNotification : (OneSignalHandleNotificationBlock)callback autoRegister : (BOOL )autoRegister ;
71
71
72
- - (id )initWithLaunchOptions : (NSDictionary *)launchOptions autoRegister : (BOOL )autoRegister ;
73
-
74
72
- (id )initWithLaunchOptions : (NSDictionary *)launchOptions appId : (NSString *)appId handleNotification : (OneSignalHandleNotificationBlock)callback autoRegister : (BOOL )autoRegister ;
75
73
76
74
// Only use if you passed FALSE to autoRegister
Original file line number Diff line number Diff line change @@ -118,10 +118,6 @@ - (id)initWithLaunchOptions:(NSDictionary*)launchOptions handleNotification:(One
118
118
return [self initWithLaunchOptions: launchOptions appId: nil handleNotification: callback autoRegister: autoRegister];
119
119
}
120
120
121
- - (id )initWithLaunchOptions : (NSDictionary *)launchOptions autoRegister : (BOOL )autoRegister {
122
- return [self initWithLaunchOptions: launchOptions appId: nil handleNotification: nil autoRegister: autoRegister];
123
- }
124
-
125
121
- (id )initWithLaunchOptions : (NSDictionary *)launchOptions appId : (NSString *)appId handleNotification : (OneSignalHandleNotificationBlock)callback autoRegister : (BOOL )autoRegister {
126
122
self = [super init ];
127
123
You can’t perform that action at this time.
0 commit comments