能力值:
(RANK:260 )
|
-
-
2 楼
也许程序本来就没有调用这个方法,一般我会拿lldb下断再确认一次
|
能力值:
( LV6,RANK:96 )
|
-
-
3 楼
function hook_NSURL() {
var UIApplication = ObjC.classes.UIApplication;
Interceptor.attach(UIApplication['- openURL:options:completionHandler:'].implementation, {
onEnter: function (args) {
var url = ObjC.Object(args[2]);
console.log("openURL:", url.toString());
},
onLeave: function (retval) {
},
});
Interceptor.attach(UIApplication['- openURL:'].implementation, {
onEnter: function (args) {
var url = ObjC.Object(args[2]);
console.log("openURL:", url.toString());
},
onLeave: function (retval) {
},
});
console.log("hook_NSURL");
}
|
|
|