diff --git a/src/ios/Plugins/JPushPlugin.h b/src/ios/Plugins/JPushPlugin.h index 2a7f932..7055d5d 100644 --- a/src/ios/Plugins/JPushPlugin.h +++ b/src/ios/Plugins/JPushPlugin.h @@ -73,6 +73,9 @@ static NSMutableDictionary *_jpushEventCache; -(void)addDismissActions:(CDVInvokedUrlCommand*)command; -(void)addNotificationActions:(CDVInvokedUrlCommand*)command; +// 设置手机号 +-(void)setMobileNumber:(CDVInvokedUrlCommand*)command; + /* * 以下为js中可监听到的事件 * jpush.openNotification 点击推送消息启动或唤醒app diff --git a/src/ios/Plugins/JPushPlugin.m b/src/ios/Plugins/JPushPlugin.m index a5baf29..30984a0 100644 --- a/src/ios/Plugins/JPushPlugin.m +++ b/src/ios/Plugins/JPushPlugin.m @@ -510,6 +510,29 @@ [[UNUserNotificationCenter currentNotificationCenter] setNotificationCategories:[NSSet setWithObject:category]]; } +#pragma mark - 设置手机号 +-(void)setMobileNumber:(CDVInvokedUrlCommand *)command { + NSDictionary* params = [command.arguments objectAtIndex:0]; + NSNumber* sequence = params[@"sequence"]; + NSString* number = params[@"mobileNumber"]; + [JPUSHService setMobileNumber:number completion:^(NSError *error) { + NSMutableDictionary* dic = [[NSMutableDictionary alloc] init]; + [dic setObject:sequence forKey:@"sequence"]; + CDVPluginResult* result; + if (error) { + [dic setValue:[NSNumber numberWithUnsignedInteger:error.code] forKey:@"code"]; + result = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsDictionary:dic]; + } + else { + // success + [dic setObject:number forKey:@"mobileNumber"]; + result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:dic]; + } + [self.commandDelegate sendPluginResult:result callbackId:command.callbackId]; + }]; + +} + #pragma mark - 内部方法 +(void)setupJPushSDK:(NSDictionary*)userInfo{