XCode 无法识别 UI 类 UITextChecker

发布于 2024-09-16 01:11:03 字数 555 浏览 5 评论 0原文

我正在为运行 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:
alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

撩发小公举 2024-09-23 01:11:03

无论出于何种原因,UIKit.h 不会导入 UITextChecker.h。您还可以通过添加以下行来解决此问题。

#import <UIKit/UITextChecker.h>

For whatever reason, UIKit.h does not import UITextChecker.h. You can fix this by also adding the following line.

#import <UIKit/UITextChecker.h>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文