gpt4 book ai didi

ios - @导入 "Unexpected ' @' in program"

转载 作者:IT王子 更新时间:2023-10-29 07:53:26 28 4
gpt4 key购买 nike

我将项目更新为 Xcode 5 并在build设置中启用了模块。但是,当我使用 @import 时,我看到编译器错误 Unexpected '@' in program

#ifndef __IPHONE_7_0
#warning "This project uses features only available in iOS SDK 7.0 and later."
#endif

#ifdef __cplusplus
#import <opencv2/opencv.hpp>
#endif

#ifdef __OBJC__
@import SystemConfiguration;
@import UIKit;

还有什么需要做的吗?

最佳答案

@hw731的评论我认为你使用不好@import:

导入框架的旧语法:

#import <UIKit/UIKit.h>

但是现在,您可以使用新的语法:

@import UIKit;

您需要启用这些模块以使用关键字 @import(当您使用 Xcode 5 创建新项目时默认启用):

enter image description here

看看here .

关于ios - @导入 "Unexpected ' @' in program",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19272683/

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