iOS+JSPatch在線修改app功能-b

什麼是熱更新?

舉個例子,你的app上架了,可是忽然想添加個小功能,那麼你有兩種方法
  • 第一種方法:在原生代碼中修改源代碼,而後提交到appStore,這個過程真是很漫長...雖然最近我提交的都是一兩天就能獲得反饋,可是沒人能保證蘋果的服務態度一直這樣好.有可能10天半個月的也沒時間給你審覈.我把這個稱爲冷更新!git

  • 第二種方法:就是利用一些三方平臺.如今比較火的就是JSPatch以前有(Wax)了. 用官網 的介紹JSPatch 是一個開源項目(Github連接),只須要在項目裏引入極小的引擎文件,就可使用 JavaScript 調用任何 Objective-C 的原生接口,替換任意 Objective-C 原生方法。目前主要用於下發 JS 腳本替換原生 Objective-C 代碼,實時修復線上 bug。總之個人認識就是:不用經過從新上架app項目到appstore即可以修改一些小問題!很大程度提升了開發以及維護的效率github

JSPatch SDK的接入

JSPatch 基礎用法

最後就用JSPatch 這個平臺打印一個HelloWorld

  • 本地測試app

#import "ViewController.h"static NSString *identifer = @"cellID";@interface ViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, strong) UITableView *tableView;@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.//    NSLog(<#NSString * _Nonnull format, ...#>)    [self.view addSubview:self.tableView]; } - (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.} - (UITableView *)tableView {    if (!_tableView) {        _tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];        _tableView.dataSource = self;        _tableView.delegate = self;        [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:identifer];    }    return _tableView; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {    return 4; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifer];    cell.textLabel.text = [NSString stringWithFormat:@"第%ld行", indexPath.row];    return cell; } - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {    NSLog(@"OC--第%ld行", indexPath.row); }@end
//APPDelete.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.//    [JSPatch startWithAppKey:@"891dfb388fe263a1"];//    [JSPatch sync];     [JSPatch testScriptInBundle];    return YES; }
  • 而後添加 main.js文件ide

    defineClass("ViewController", {tableView_didSelectRowAtIndexPath: function(tableView, indexPath) {     console.log("JSPath--:",indexPath.row());  }})

上面的main.js文件在app啓動的時候!會被自動調用:功能就是覆蓋ViewController裏面的這個方法

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {    NSLog(@"OC--第%ld行", indexPath.row); }

在調用main.js文件以前

程序的運行結果是這樣的

使用JSPatch以前.gif測試

在調用main.js文件以後

程序的運行結果是這樣的

使用JSPatch以後.gifatom

到這裏你們應該已經看出了這個JSPatch的強大!這還只是本地測試,當你要修改程序內容的時候得在本地修改main.js文件

線上測試  (其實就是把main.js文件傳到JSPathch的後臺)

線上發佈新補丁.pngspa

而後在APPDelete.m中修改代碼

//APPDelete.m- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    // Override point for customization after application launch.    //891dfb388fe263a1 這個是你在JSPatch後臺建立應用的時候自動生成的appKey    [JSPatch startWithAppKey:@"891dfb388fe263a1"];    [JSPatch sync];//     [JSPatch testScriptInBundle];  /** 同時刪除本地的main.js文件 */    return YES; }

線上JSPathch.pngcode

最後附上github源代碼:https://github.com/yuzhouheike/JSPathch-

相關文章
相關標籤/搜索