我一步一步地遵循了MD文件。但是编译中仍然存在错误。我能做些什么?

在FaceppClient.m文件中:

if ([[[UIDevice currentDevice] systemVersion] compare: @"5.0" options: NSNumericSearch ] != NSOrderedAscending)
    _ios50orNewer = true;

Xcode输出此错误:



我在文件中添加了#import "UIDevice.h",但是Xcode输出了"UIDevice.h not found"

我在项目中添加了UIKit框架,但是仍然存在编译问题。

那我该怎么办?

最佳答案

尝试在.m文件顶部添加以下行:

#import <UIKit/UIKit.h>

将框架添加到项目中很有用,但是您还必须在代码中包括所需的 header 。

关于ios - 如何处理 `Use of undeclared identifier ' UIDevice'`,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35507457/

10-10 21:10