-1

我需要一些帮助来读取 plist 文件。这是我的代码,但它不起作用,我不再有想法了。我想构建一个 dylib 来读取这个 plist com.mi.pp1.plist 的整数。

Bux = [[[NSDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences/com.mi.pp1.plist"]valueForKey:@"kBux"]intValue];

%hook PPPlayerData
- (int)bux
{
    return Bux;
}
%end
4

1 回答 1

0
int Bux;

Bux = [[[NSDictionary dictionaryWithContentsOfFile:@"/var/mobile/Library/Preferences    /com.mi.pp1.plist"]objectForKey:@"kBux"]intValue];

%hook PPPlayerData
- (int)bux
{
return Bux;
}

作品

于 2013-03-07T16:58:47.843 回答