bang590 / JSPatch

JSPatch bridge Objective-C and Javascript using the Objective-C runtime. You can call any Objective-C class and method in JavaScript by just including a small engine. JSPatch is generally used to hotfix iOS App.
MIT License
11.37k stars 2.24k forks source link

JSPatch热修复自定义类init方法,怎么做? #779

Open Lidalu opened 7 years ago

jacksonon commented 7 years ago

init: function { self = self.super().init(); if (self) { } return self; } 手撸代码