我需要一些从plist文件中读取的帮助。 这是我的代码,但它不起作用,我不再有想法了。我想构建一个读取此plist com.mi.pp1.plist整数的dylib。
Bux = [[[NSDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences/com.mi.pp1.plist"]valueForKey:@"kBux"]intValue];
%hook PPPlayerData
- (int)bux
{
return Bux;
}
%end
答案 0 :(得分:0)
int Bux;
Bux = [[[NSDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences /com.mi.pp1.plist"]objectForKey:@"kBux"]intValue];
%hook PPPlayerData
- (int)bux
{
return Bux;
}
作品