gpt4 book ai didi

objective-c - 导入 不起作用

转载 作者:行者123 更新时间:2023-12-02 00:55:42 28 4
gpt4 key购买 nike

我正在使用 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
我该如何解决这个问题?请帮忙

最佳答案

AppKit 适用于 Mac;对于 iOS,您需要 UIKit:

#import <UIKit/UIKit.h>

关于objective-c - 导入 <AppKit/AppKit.h> 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14830853/

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