导入<appkit appkit.h =“”>不起作用</appkit>

时间:2013-02-12 10:54:03

标签: objective-c cydia tweak theos

我正在使用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/includeopt/theos/include,但无法找到AppKit.h
我该如何解决这个问题?请帮忙

1 个答案:

答案 0 :(得分:9)

AppKit适用于Mac;对于iOS,你想要UIKit:

#import <UIKit/UIKit.h>