XCode 无法识别 UI 类 UITextChecker
我正在为运行 3.2.2 和 XCode 3.2.3 的 iPad 编写一个应用程序。该版本的 XCode 似乎适用于 iPad 的 iOS 最高版本是 3.2,但其他应用程序可以很好地加载到手机上,因此这似乎不是问题。我正在尝试使用新的 UITextChecker 类。我已经导入了 UIKit,并且 UITextChecker.h 出现在 UIKit.framework 图标下的 headers 文件夹中。但是,当我尝试编译此代码时:
NSString *theLanguage = [[UITextChecker availableLanguages] objectAtIndex:0];
或者只是这样:
UITextChecker *textChecker;
XCode 告诉我 UITextChecker 未声明。有什么想法吗?谢谢!
James
这是 UIViewController 头文件的图片:
I am writing an app for my iPad running 3.2.2 with XCode 3.2.3. It seems that the highest version of the iOS for iPad this version of XCode has is 3.2, but other apps load fine onto the phone so this doesn't seem to be an issue. I am attempting to make use of the new UITextChecker class. I have imported UIKit, and UITextChecker.h appears in the headers folder under the UIKit.framework icon. However, when I try to compile this code:
NSString *theLanguage = [[UITextChecker availableLanguages] objectAtIndex:0];
or simply this:
UITextChecker *textChecker;
XCode tells me that UITextChecker is undeclared. Any ideas what it going on here? Thanks!
James
Here is a picture of the UIViewController's header file:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论出于何种原因,UIKit.h 不会导入 UITextChecker.h。您还可以通过添加以下行来解决此问题。
For whatever reason, UIKit.h does not import UITextChecker.h. You can fix this by also adding the following line.