xy

Results 51 comments of xy

留下联系方式(微信),我私聊你

打开每次刷新开关

打开每次刷新开关

卸载了以后怎么可能还有,刷新下朋友圈

Finally I added these CFLAGS "-Wno-unused-variable -D__unused="" -Wno-ambiguous-macro" fix the problem. But I think it is just a stopgap, I don't know why system not handle "__unused" well between theos...

Shadowrocket这个app不确定是什么原因导致的,你可以不脱壳,挂起后直接输入c看下会出什么错。 微信这个的话是没有问题的,脱壳中会有几秒的时间

按理说应该可以的,回头等我有iOS10的手机的时候试下

你是不是改了文件? 这里你日志中的代码 > NSString docPath = ((NSArray)NSSearchPathForDirectoriesInDomains(9, 1, YES))[0]; 明显这里是一个NSString的指针,正常的代码是 ``` NSString *docPath = ((NSArray*)NSSearchPathForDirectoriesInDomains(9, 1, YES))[0]; ``` 同理还有几处也是这样

你把dumpdecrypted.py中 ``` NSString docPath = ((NSArray)NSSearchPathForDirectoriesInDomains(9, 1, YES))[0]; ``` 处的代码贴出来看看,日志上显示这里的代码还是一样的,不是指针

嗯,两个问题: 1 , 将`NSString *docPath = ((NSArray*)NSSearchPathForDirectoriesInDomains(9, 1, YES))[0];`中的数字9改为`NSDocumentDirectory` 2,将`strlcpy(npath, docPath.UTF8String, sizeof(npath));`中的`docPath.UTF8String`改为`[docPath UTF8String]`