作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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/
我正在尝试使用 plist 文件来保存一些数据。 但应用程序在启动期间崩溃。 调整.xm: #define hackBundlePath @"/Library/MobileSubstrate/Dyna
我是一名优秀的程序员,十分优秀!