第一種方法:在原生代碼中修改源代碼,而後提交到appStore,這個過程真是很漫長...雖然最近我提交的都是一兩天就能獲得反饋,可是沒人能保證蘋果的服務態度一直這樣好.有可能10天半個月的也沒時間給你審覈.我把這個稱爲冷更新!git
第二種方法:就是利用一些三方平臺.如今比較火的就是JSPatch以前有(Wax)了. 用官網 的介紹JSPatch 是一個開源項目(Github連接),只須要在項目裏引入極小的引擎文件,就可使用 JavaScript 調用任何 Objective-C 的原生接口,替換任意 Objective-C 原生方法。目前主要用於下發 JS 腳本替換原生 Objective-C 代碼,實時修復線上 bug。
總之個人認識就是:不用經過從新上架app項目到appstore即可以修改一些小問題!很大程度提升了開發以及維護的效率github
本地測試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()); }})
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath { NSLog(@"OC--第%ld行", indexPath.row); }
使用JSPatch以前.gif測試
使用JSPatch以後.gifatom
線上發佈新補丁.pngspa
//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