我是新手使用了MonkeyDev套件的Logos tweak產出的deb插件無法hook,
使用Filza安裝deb
但是使用Monkeyapp是可以成功Hook到我想要的函數
請問這樣怎麼處理
使用xcode版本14.2
ios14.6 unc0ver越獄
麻煩各位大大了
此為Logos寫法
#import <UIKit/UIKit.h>
@interface ViewController:UIViewController
@end
%hook ViewController
-(void) testfunc {
%log;
NSLog(@"Hookfunc");
return ;
}
%end
此為DEMO檔案寫法
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
[self testfunc];
}
- (void) testfunc {
NSLog(@"摳到的func");
}
@end