phiz_2.42.7.1
parent
ed4df837c8
commit
497546886f
|
@ -51,8 +51,8 @@
|
||||||
|
|
||||||
FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel];
|
FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel];
|
||||||
[channel invokeMethod:@"extensionApi:getUserInfo" arguments:nil result:^(id _Nullable result) {
|
[channel invokeMethod:@"extensionApi:getUserInfo" arguments:nil result:^(id _Nullable result) {
|
||||||
CFRunLoopStop(runLoop);
|
|
||||||
userInfo = result;
|
userInfo = result;
|
||||||
|
CFRunLoopStop(runLoop);
|
||||||
}];
|
}];
|
||||||
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
||||||
CFRunLoopStop(runLoop);
|
CFRunLoopStop(runLoop);
|
||||||
|
@ -68,11 +68,10 @@
|
||||||
FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel];
|
FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel];
|
||||||
NSLog(@"appletInfo:didClickMoreBtnAtPath,appId=%@,path=%@,channel=%@",appletInfo.appId,path,channel);
|
NSLog(@"appletInfo:didClickMoreBtnAtPath,appId=%@,path=%@,channel=%@",appletInfo.appId,path,channel);
|
||||||
[channel invokeMethod:@"extensionApi:customCapsuleMoreButtonClick" arguments:@{@"appId": appletInfo.appId} result:^(id _Nullable result) {
|
[channel invokeMethod:@"extensionApi:customCapsuleMoreButtonClick" arguments:@{@"appId": appletInfo.appId} result:^(id _Nullable result) {
|
||||||
CFRunLoopStop(runLoop);
|
|
||||||
|
|
||||||
if ([result isKindOfClass:[NSNumber class]]) {
|
if ([result isKindOfClass:[NSNumber class]]) {
|
||||||
flag = [result boolValue];
|
flag = [result boolValue];
|
||||||
}
|
}
|
||||||
|
CFRunLoopStop(runLoop);
|
||||||
}];
|
}];
|
||||||
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
||||||
CFRunLoopStop(runLoop);
|
CFRunLoopStop(runLoop);
|
||||||
|
@ -88,11 +87,11 @@
|
||||||
CFRunLoopRef runLoop = CFRunLoopGetCurrent();
|
CFRunLoopRef runLoop = CFRunLoopGetCurrent();
|
||||||
FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel];
|
FlutterMethodChannel *channel = [[MopPlugin instance] methodChannel];
|
||||||
[channel invokeMethod:@"extensionApi:getCustomMenus" arguments:@{@"appId": appletInfo.appId} result:^(id _Nullable result) {
|
[channel invokeMethod:@"extensionApi:getCustomMenus" arguments:@{@"appId": appletInfo.appId} result:^(id _Nullable result) {
|
||||||
CFRunLoopStop(runLoop);
|
|
||||||
if ([result isKindOfClass:[NSArray class]]) {
|
if ([result isKindOfClass:[NSArray class]]) {
|
||||||
list = result;
|
list = result;
|
||||||
NSLog(@"customMenusInApplet2222:list=%@",list);
|
NSLog(@"customMenusInApplet2222:list=%@",list);
|
||||||
}
|
}
|
||||||
|
CFRunLoopStop(runLoop);
|
||||||
}];
|
}];
|
||||||
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
||||||
CFRunLoopStop(runLoop);
|
CFRunLoopStop(runLoop);
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
@property FlutterMethodChannel *shareMethodChannel;
|
@property FlutterMethodChannel *shareMethodChannel;
|
||||||
@property FlutterMethodChannel *shareAppletMethodChannel;
|
@property FlutterMethodChannel *shareAppletMethodChannel;
|
||||||
@property FlutterMethodChannel *appletMethodChannel;
|
@property FlutterMethodChannel *appletMethodChannel;
|
||||||
|
@property FlutterMethodChannel *phizMethodChannel;
|
||||||
|
|
||||||
+ (instancetype) instance;
|
+ (instancetype) instance;
|
||||||
@end
|
@end
|
||||||
|
|
Loading…
Reference in New Issue