我正在使用 IOSOpenDev 对 Xcode 进行 cydia 调整,我尝试导入<AppKit/AppKit.h>
,但出现此错误!
'AppKit/AppKit.h' file not found'
这是我的代码,当有人尝试截屏时会更改闪光灯颜色
#include <AppKit/AppKit.h>
%hook SBScreenFlash
-(void)flashColor:(id)color {
NSDictionary *prefs=[[NSDictionary alloc] initWithContentsOfFile:@"/var/mobile/Library/Preferences/com.junyi00.screenshotcolor.plist"];
if ([[prefs objectForKey:@"enable"] boolValue]){
color = [NSColor blueColor];
%orig(color); }
else {
%orig; }
}
%end
我查看opt/IOSOpenDev/include
并opt/theos/include
无法找到AppKit.h
如何解决此问题?请帮忙