mac上快速集成weexsdk?

1.首先在mac上安裝node和npm

可參考mac上安裝nodejs和npm

2. 查看node和npm版本號

node -v 和npm -v

3.安裝weex-toolkit

sudo npm install -g weex-toolkit
查看是否安裝成功
weex --version

4.安裝CocoaPods

可參考看一遍就會的CocoaPods的安裝和使用教程

5.用xcode新建一個空項目鸥印,并通過終端運行pod init 命令,以便生成Podfile文件,如圖

Snip20171214_1.png

6.編輯podfile文件刨肃,在編輯前需要通過pod search WeexSdk海洼,查看WeexSdk最新版本號竖慧,

編輯內容如下:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
#inhibit_all_warnings!

def common
    pod 'WeexSDK', '0.17.0'
    pod 'WXDevtool', '0.15.3'
    pod 'SDWebImage', '3.7.5'
    pod 'SocketRocket', '0.4.2'
    pod 'ATSDK-Weex', '0.0.1'
    
    # WeexGcanvas is added by Weex Plugin, more info at https://market.dotwe.org/ext/list.htm
    pod 'WeexGcanvas'
end

target 'weexdemo' do
    common
end

執(zhí)行命令pod install

7.新建bundlejs文件夾,然后將webstrom生成的js文件拷貝進去

8.修改AppDelegate

.h文件
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
.m文件
#import "AppDelegate.h"
#import <WeexSDK/WeexSDK.h>
#import "ViewController.h"
@interface AppDelegate ()

@end

@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
    self.window.backgroundColor = [UIColor whiteColor];
    self.window.rootViewController = [[WXRootViewController alloc] initWithRootViewController:[ViewController new]];
    [self.window makeKeyAndVisible];
    
    [WXAppConfiguration setAppGroup:@"jwDemo"];
    [WXAppConfiguration setAppName:@"weexPageDemo"];
    [WXAppConfiguration setAppVersion:@"1.0.0"];
    
    //init sdk enviroment
    [WXSDKEngine initSDKEnviroment];
    [WXLog setLogLevel: WXLogLevelAll];//輸出日志
    return YES;
    
}


- (void)applicationWillResignActive:(UIApplication *)application {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}


- (void)applicationDidEnterBackground:(UIApplication *)application {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}


- (void)applicationWillEnterForeground:(UIApplication *)application {
    // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}


- (void)applicationDidBecomeActive:(UIApplication *)application {
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}


- (void)applicationWillTerminate:(UIApplication *)application {
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}


@end

9.修改ViewController

.h文件
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@property (nonatomic, copy) NSString *url;
@end
.m文件
#import "ViewController.h"
#import <WeexSDK/WXSDKInstance.h>
@interface ViewController ()
@property (nonatomic, readwrite, strong) WXSDKInstance *instance;
@property (nonatomic, weak) UIView *weexView;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self.view setBackgroundColor:[UIColor whiteColor]];
    
    //默認加載的地址為本地路徑的bundlejs/index.js
    if (!self.url) {
        self.url = [[NSBundle mainBundle] pathForResource:@"bundlejs/index" ofType:@"js"];
    }
    [self render];//weex將js渲染成weex頁面座每。
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
- (void)render{
    NSURL *URL = [[NSURL alloc] initFileURLWithPath:self.url];
    
    CGFloat width = self.view.frame.size.width;
    [_instance destroyInstance];
    _instance = [[WXSDKInstance alloc] init];
    _instance.viewController = self;
    _instance.frame = CGRectMake(0, 64, width, self.view.frame.size.height);
    
    __weak typeof(self) weakSelf = self;
    _instance.onCreate = ^(UIView *view) {
        [weakSelf.weexView removeFromSuperview];
        weakSelf.weexView = view;
        [weakSelf.view addSubview:weakSelf.weexView];
    };
    
    NSString *randomURL = [NSString stringWithFormat:@"%@?random=%d",URL.absoluteString,arc4random()];
    [_instance renderWithURL:[NSURL URLWithString:randomURL] options:@{@"bundleUrl":URL.absoluteString} data:nil];
}

- (void)dealloc{
    [_instance destroyInstance];
}

@end

附上demo

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市摘悴,隨后出現(xiàn)的幾起案子峭梳,更是在濱河造成了極大的恐慌,老刑警劉巖蹂喻,帶你破解...
    沈念sama閱讀 211,123評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件葱椭,死亡現(xiàn)場離奇詭異,居然都是意外死亡口四,警方通過查閱死者的電腦和手機孵运,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評論 2 384
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蔓彩,“玉大人治笨,你說我怎么就攤上這事〕嘟溃” “怎么了旷赖?”我有些...
    開封第一講書人閱讀 156,723評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長更卒。 經(jīng)常有香客問我等孵,道長,這世上最難降的妖魔是什么逞壁? 我笑而不...
    開封第一講書人閱讀 56,357評論 1 283
  • 正文 為了忘掉前任流济,我火速辦了婚禮,結果婚禮上腌闯,老公的妹妹穿的比我還像新娘绳瘟。我一直安慰自己,他們只是感情好姿骏,可當我...
    茶點故事閱讀 65,412評論 5 384
  • 文/花漫 我一把揭開白布糖声。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪蘸泻。 梳的紋絲不亂的頭發(fā)上琉苇,一...
    開封第一講書人閱讀 49,760評論 1 289
  • 那天,我揣著相機與錄音悦施,去河邊找鬼并扇。 笑死,一個胖子當著我的面吹牛抡诞,可吹牛的內容都是我干的穷蛹。 我是一名探鬼主播,決...
    沈念sama閱讀 38,904評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼昼汗,長吁一口氣:“原來是場噩夢啊……” “哼肴熏!你這毒婦竟也來了?” 一聲冷哼從身側響起顷窒,我...
    開封第一講書人閱讀 37,672評論 0 266
  • 序言:老撾萬榮一對情侶失蹤蛙吏,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后鞋吉,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體鸦做,經(jīng)...
    沈念sama閱讀 44,118評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,456評論 2 325
  • 正文 我和宋清朗相戀三年坯辩,在試婚紗的時候發(fā)現(xiàn)自己被綠了馁龟。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,599評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡漆魔,死狀恐怖,靈堂內的尸體忽然破棺而出却音,到底是詐尸還是另有隱情改抡,我是刑警寧澤,帶...
    沈念sama閱讀 34,264評論 4 328
  • 正文 年R本政府宣布系瓢,位于F島的核電站阿纤,受9級特大地震影響,放射性物質發(fā)生泄漏夷陋。R本人自食惡果不足惜欠拾,卻給世界環(huán)境...
    茶點故事閱讀 39,857評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望骗绕。 院中可真熱鬧藐窄,春花似錦、人聲如沸酬土。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至捐顷,卻和暖如春聚霜,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背微宝。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評論 1 264
  • 我被黑心中介騙來泰國打工棺亭, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蟋软。 一個月前我還...
    沈念sama閱讀 46,286評論 2 360
  • 正文 我出身青樓侦铜,卻偏偏與公主長得像,于是被迫代替她去往敵國和親钟鸵。 傳聞我的和親對象是個殘疾皇子钉稍,可洞房花燭夜當晚...
    茶點故事閱讀 43,465評論 2 348

推薦閱讀更多精彩內容

  • 作為一個純iOS開發(fā)者,每次想學習web都是看兩小時就放棄棺耍。這次希望自己能夠堅持下去贡未。關于weex與 react ...
    sweetpf閱讀 1,116評論 3 7
  • 2016年4月21日,阿里巴巴在Qcon大會上宣布開源跨平臺移動開發(fā)工具Weex蒙袍,Weex能夠完美兼顧性能與動態(tài)性...
    晴天咚咚閱讀 2,887評論 1 15
  • Weex 是一套簡單易用的跨平臺開發(fā)方案俊卤,能以 web 的開發(fā)體驗構建高性能、可擴展的 native 應用害幅,為了做...
    假裝我是程序猿閱讀 522評論 0 1
  • 如何搭建本地開發(fā)環(huán)境進行 Weex 開發(fā)消恍。 使用Homebrew 進行安裝 node;通常以现,安裝了 Node.js...
    kakukeme閱讀 1,409評論 0 50
  • 【泡泡/薇薇】20170530學習力踐行D15 早上起來自己寫了幾頁全腦益智總動員狠怨。里面有一頁是下面兩個數(shù)相加等于...
    蘭_8d1a閱讀 73評論 0 0