[ios] fireGlobalEvent无响应!写法是否有问。

做一个二维码扫描功能

在 appdelegate.m里初始化了 instance单例

#import <UIKit/UIKit.h>
#import <WeexSDK/WXSDKInstance.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) WXSDKInstance *instance;
@end

注册了module 初始化instance

 self.instance = [[WXSDKInstance alloc] init];
 [WXSDKEngine registerModule:@"scanEvent" withClass:[WXScanModule class]];

然后 module跳转扫描页面

-(void)startScan{

    UIViewController *vc = [currentView getCurrentVC];
    ScanViewController *scan = [[ScanViewController alloc] init];
    
  [vc presentViewController:[[UINavigationController alloc] initWithRootViewController:scan] animated:YES completion:nil];
    
}

最后在 ScanViewController 发送 fireGlobalEvent 扫描出了东西 weex页面接受不到这个fireGlobalEvent …

-(void)getScanDataString:(NSString*)scanDataString{
    
    NSLog(@"二维码内容:%@",scanDataString);
    AppDelegate *appDele = (AppDelegate *) [[UIApplication sharedApplication] delegate];
    [appDele.instance fireGlobalEvent:@"globalScan" params:@{@"scanInfo":scanDataString}];
 
    [self goBack];

}

大神们看看这个代码有啥问题啊~~

阅读 3.2k
1 个回答

这个事件只会发到instance 对应的那个页面,如果需要发送到所有页面,可以直接使用

[[NSNotificationCenter defaultCenter] postNotificationName:@"globalEventName" object:nil userInfo:[NSDictionary dictionaryWithObject:@"key and value" forKey:@"params"]];

全局事件会把userInfo[@"param"] 传递给js事件

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题