导语
研究weex之后一段时间 ,我仔细考虑了一下weex的优点和缺点。
优点:
- 俩端代码共用率极高(不考虑前端,只考虑iOS 安卓)
- 热更新
- 接近原生的体验
- 较低的学习成本
优点的同时缺点也是这么的夸张,
缺点:
- 文档不详细
- 坑比较多
- 复杂的业务场景无法实现
基于以上考虑,所以weex比较适合和原生混合开发。较简单、需求经常迭代的页面可用weex页面,较复杂的可使用native,而且weex开发可使用native组件,所以可以让人大胆的尝试weex不用担心出现无法实现的业务而爆炸(本人研究的深度有限,如有不对欢迎指出)。
一、导入SDK
使用pod 导入WeexSDK(建议使用最新版本)
pod ‘WeexSDK'
二、初始化WeexSDK
基本信息的配置
[WXAppConfiguration setAppGroup:@"AliApp"];
[WXAppConfiguration setAppName:@"WeexDemo"];
[WXAppConfiguration setAppVersion:@"1.0.0"];
初始化SDK
[WXSDKEngine initSDKEnvironment]
注册自定义视图
[WXSDKEngine registerComponent:@"MyView" withClass:[MyViewComponent class]];
注册自定义组件
[WXSDKEngine registerModule:@"event" withClass:[WXEventModule class]];
备注:以上俩个注册第一个是native组件,第二是调用native组件
图片下载注册(weex并不提供此功能 需要原生实现 oc视角使用SDWebImage)
[WXSDKEngine registerHandler:[WXNavigationDefaultImpl new] withProtocol:@protocol(WXNavigationProtocol)]
打印日志
[WXLog setLogLevel: WXLogLevelAll]
三、渲染页面
Weex 支持整体页面渲染和部分渲染两种模式,你需要做的事情是用指定的 URL 渲染 Weex 的 view,然后添加到它的父容器上,父容器一般都是 viewController。
[_instance destroyInstance];
_instance = [[WXSDKInstance alloc] init];
_instance.viewController = self;
CGFloat width = self.view.frame.size.width;
_instance.frame = CGRectMake(self.view.frame.size.width-width, 0, width, _weexHeight);
__weak typeof(self) weakSelf = self;
_instance.onCreate = ^(UIView *view) {
[weakSelf.weexView removeFromSuperview];
weakSelf.weexView = view;
[weakSelf.view addSubview:weakSelf.weexView];
};
_instance.onFailed = ^(NSError *error) {
NSLog(@"failed %@",error);
};
_instance.renderFinish = ^(UIView *view) {
NSLog(@"render finish");
[weakSelf _updateInstanceState:WeexInstanceAppear];
};
_instance.updateFinish = ^(UIView *view) {
NSLog(@"update Finish");
};
NSString *url = [NSString stringWithFormat:@"file://%@/index.js",[NSBundle mainBundle].bundlePath];
[_instance renderWithURL:[NSURL URLWithString:url] options:@{@"bundleUrl":url} data:nil];
五、销毁
- (void)dealloc
{
[_instance destroyInstance];
}
六、 导入 Weex SDK framework 到工程(官方文档上的)
- https://github.com/apache/incubator-weex.git 下载这个项目编译
- weex/ios/sdk/Products 目录下的framework导入自己的工程中
- 添加 js-framework 到自己的 main bundle, js-framework 的位置在 WeexSDK.framework 中,文件名称为 native-bundle-main.js
demo中firstDemo工程
网友评论