gpt4 book ai didi

ios - 在 mobilesubtrate 调整中使用捆绑资源

转载 作者:行者123 更新时间:2023-12-01 15:51:37 26 4
gpt4 key购买 nike

我正在尝试使用 plist 文件来保存一些数据。
但应用程序在启动期间崩溃。

调整.xm:

#define hackBundlePath @"/Library/MobileSubstrate/DynamicLibraries/testBundle.bundle"

NSMutableDictionary *modsDict = [[NSMutableDictionary alloc] init];

%ctor {

NSBundle *bundle = [[NSBundle alloc] initWithPath:hackBundlePath];
NSString *path = [bundle pathForResource:@"HackData" ofType:@"plist"];

NSFileManager *fileManager = [NSFileManager defaultManager];
if ([fileManager fileExistsAtPath: path]) {
modsDict = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
}
else {
[modsDict setObject:FALSE forKey:@"test"];
[modsDict setObject:FALSE forKey:@"test1"];
[modsDict setObject:FALSE forKey:@"test2"];

[modsDict writeToFile:[bundle bundlePath] atomically: TRUE];

}

}

生成文件:

include theos/makefiles/common.mk

TWEAK_NAME = test
test_FILES = Tweak.xm ModsTableViewController.mm
test_FRAMEWORKS = Foundation UIKit CoreFoundation

include $(THEOS_MAKE_PATH)/tweak.mk

BUNDLE_NAME = testBundle
testBundle_INSTALL_PATH = /Library/MobileSubstrate/DynamicLibraries


include $(THEOS)/makefiles/bundle.mk

bundle 是在正确的位置创建的,但是在启动应用程序后似乎没有创建 plist 文件。所以我想我可以说问题应该出在 writeToFile 方法或之前

最佳答案

您正在尝试将 plist 写入包路径,而不是为其提供文件名。

[modsDict writeToFile:[[bundle bundlePath] stringByAppendingPathComponent:@"filename.plist"] 原子地:是];

关于ios - 在 mobilesubtrate 调整中使用捆绑资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24952253/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com