JSPatch 是一個開源項目(Github鏈接)枷恕,只需要在項目里引入極小的引擎文件醋虏,就可以使用 JavaScript 調(diào)用任何 Objective-C 的原生接口味抖,替換任意 Objective-C 原生方法。目前主要用于下發(fā) JS 腳本替換原生 Objective-C 代碼灰粮,實時修復(fù)線上 bug仔涩。
除了實時修復(fù)線上 bug,甚至為 APP 動態(tài)添加一個模塊也是可行的粘舟,不過可能會有性能問題熔脂。
使用JSPatch 需要有一個后臺可以下發(fā)和管理腳本佩研,并且需要處理傳輸安全等部署工作。
目前有一個JSPatch 平臺提供了一系列的服務(wù)霞揉,只需引入一個 SDK 就能使用 JSPatch旬薯,只是還在內(nèi)測中....
地址 :https://github.com/bang590/JSPatch
CocoPods安裝:
Podfile文件
platform :ios, '6.0'
pod 'JSPatch'
然后
pod install
下面開始使用:我們先創(chuàng)建一個列表,再通過JSPath改變行數(shù)
1.我們先在Controller里加入一個列表适秩,讓他顯示3行 绊序,代碼如下:
#import "JRViewController.h"
@interface JRViewController ()<UITableViewDataSource,UITableViewDelegate>
@property(nonatomic,strong)UITableView* myTableView;
@end
@implementation JRViewController
- (void)viewDidLoad {
[super viewDidLoad];
UITableView* tv =[[UITableView alloc]initWithFrame:self.view.bounds
style:UITableViewStylePlain];
self.myTableView = tv;
self.myTableView.delegate = self;
self.myTableView.dataSource = self;
[self.view addSubview:self.myTableView];
}
#pragma mark -- UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 3;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString* i= @"cell";
UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:i];
if (cell == nil ) {
cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:i];
}
cell.textLabel.text = @"title";
return cell;
}
運(yùn)行一下,顯示3行秽荞,沒問題
2.創(chuàng)建js文件 New File -> ios -> Empty .....
3.在js文件中 寫入:
//將JRViewController類中的- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section方法替換掉
defineClass('JRViewController', {
tableView_numberOfRowsInSection: function(tableView, section) {
return 10;
},
});
關(guān)于JSPath的具體使用骤公,請自行查閱:https://github.com/bang590/JSPatch/wiki
4.調(diào)用這個js文件,代碼如下:
#import "AppDelegate.h"
#import "JPEngine.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[JPEngine startEngine];
NSString* path = [[NSBundle mainBundle]pathForResource:@"JSPathTest" ofType:@"js"];
NSString* js = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
[JPEngine evaluateScript:js];
return YES;
}
運(yùn)行一下扬跋,現(xiàn)在是顯示10行了 阶捆!
**注:
如果我們想要通過 JS 腳本替換原生 Objective-C 代碼,實時修復(fù)線上 bug的話钦听,還是要通過服務(wù)器下發(fā) js腳本 洒试! **
代碼如下:
[NSURLConnection sendAsynchronousRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://........"]]
queue:[NSOperationQueue mainQueue]
completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSString *script = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
[JPEngine evaluateScript:script];
}];