文檔教程html
一. 已有項目集成weex, 有時候會報錯, 由於sdk中用到了socketapache
pod 'WeexSDK' pod 'SocketRocket'
二. 在app啓動方法 -didFinish 中初始化weexSDKweex
- (void)initWeexSDK{ //業務配置,非必需 [WXAppConfiguration setAppGroup:@"AliApp"]; [WXAppConfiguration setAppName:@"集成weex"]; [WXAppConfiguration setAppVersion:@"1.0.0"]; //初始化SDK環境 [WXSDKEngine initSDKEnvironment]; //註冊自定義module和component,非必需 /* [WXSDKEngine registerComponent:@"MyView" withClass:[MyViewComponent class]]; [WXSDKEngine registerModule:@"event" withClass:[WXEventModule class]]; */ //註冊component [WXSDKEngine registerComponent:@"mycomponent" withClass:[WXComponent class]]; //註冊module [WXSDKEngine registerModule:@"callNative" withClass:[JScallNativeModeul class]]; //註冊協議的實現類,非必需(須要使用原生的圖片加載框架) // [WXSDKEngine registerHandler:[WXImgLoaderDefaultImpl new] withProtocol:@protocol(WXImgLoaderProtocol)]; //設置Log輸出等級:調試環境默認爲Debug,正式發佈會自動關閉。 [WXLog setLogLevel:WXLogLevelAll]; // 開啓debug模式 // [WXDebugTool setDebug:YES]; }