Armariris icon indicating copy to clipboard operation
Armariris copied to clipboard

怎么混淆指定的Object-C方法 ?

Open AsTryE opened this issue 8 years ago • 0 comments

想混淆指定的方法和函数,CFLAG和C++Flag都没有写编译参数。

 int foo() __attribute__((__annotate__(("fla")))) {
    NSString *isCall = @"ok";
    if ([isCall isEqualToString:@"ok"]) {
        NSLog(@"ok!!!!!!!!!!!!!");
        return 3;
    }
    return 2;
}

该C函数混淆可以,但是 Object-C方法 没作用,怎么配置呢?

AsTryE avatar Nov 17 '17 11:11 AsTryE