可以通过源码编译出Weex SDK,可以在新的feature 或者bugfix 分支,尝试最新的feature
从github上clone一份代码
git clone https://github.com/alibaba/weex.git
把WeexSDK 导入到你已有的项目,如果没有,可以参考新建项目
拷贝 ios/sdk
下面目录到你的项目目录,在添加依赖之前,确保项目目录有Podfile
,如果没有,创建一个,用文本编辑器打开,添加如下依赖
如果使用正式版本如 0.6.1 的,就不需要做 拷贝ios/sdk
这个操作,直接引用cocoaPods的master repo 上就可以,这个需要在Podfile 最前面添加
source 'https://github.com/CocoaPods/Specs.git'
target 'YourTarget' do
platform :ios, '7.0'
pod 'WeexSDK', :path=>'./sdk/' # pod 'WeexSDK', '0.6.1'
end
在命令行(terminal)中,切换到当前目录,运行 pod install
,过一会,项目的 .workspace结尾的文件就被创建出来,到这步,依赖已经添加完了
初始化 Weex 环境
在AppDelegate.m 文件中做初始化操作,一般会在 didFinishLaunchingWithOptions
方法中如下添加
//business configuration
[WXAppConfiguration setAppGroup:@"AliApp"];
[WXAppConfiguration setAppName:@"WeexDemo"];
[WXAppConfiguration setAppVersion:@"1.0.0"];
//init sdk enviroment
[WXSDKEngine initSDKEnviroment];
//register custom module and component,optional
[WXSDKEngine registerComponent:@"MyView" withClass:[MyViewComponent class]];
[WXSDKEngine registerModule:@"event" withClass:[WXEventModule class]];
//register the implementation of protocol, optional
[WXSDKEngine registerHandler:[WXNavigationDefaultImpl new] withProtocol:@protocol(WXNavigationProtocol)];
//set the log level
[WXLog setLogLevel: WXLogLevelAll];
渲染 weex Instance
Weex 支持整体页面渲染和部分渲染两种模式,你需要做的事情是用指定的URL渲染weex的view,然后添加到它的父容器上,父容器一般都是viewController
#import <WeexSDK/WXSDKInstance.h>
- (void)viewDidLoad
{
[super viewDidLoad];
_instance = [[WXSDKInstance alloc] init];
_instance.viewController = self;
_instance.frame = self.view.frame;
__weak typeof(self) weakSelf = self;
_instance.onCreate = ^(UIView *view) {
[weakSelf.weexView removeFromSuperview];
[weakSelf.view addSubview:weakSelf.weexView];
};
_instance.onFailed = ^(NSError *error) {
//process failure
};
_instance.renderFinish = ^ (UIView *view) {
//process renderFinish
};
[_instance renderWithURL:self.url options:@{@"bundleUrl":[self.url absoluteString]} data:nil];
}
WXSDKInstance 是很重要的一个类,提供了基础的方法和一些回调,如renderWithURL
,onCreate
,onFailed
等,可以参见 WXSDKInstance.h
的 声明
3. 销毁Weex Instance
在 viewController的 dealloc 阶段 销毁掉weex instance, 释放内存,避免造成内存泄露
- (void)dealloc
{
[_instance destroyInstance];
}
参考此处直接导入weexSDK