我是 Objective-C 新手,我正在尝试使用 TextInputSources 所以我尝试了
#import
和
这些都不起作用。我有什么遗漏的吗?我正在使用 Xcode 3。
I'm new to Objective-C and I'm trying to use methods from TextInputSources so I tried
#import <Carbon/HIToolbox>
and
#import <HIToolbox/TextInputSources.h>
nothing of those works. Is there something I'm missing? I'm using Xcode 3.
#include <Carbon/Carbon.h>
这是一个很大的标题,但它总是有效的。
您可能应该在前缀标头中执行此操作,因为将其包含在其他任何地方都会大大减慢构建速度。
It's a big header, but it always works.
You should probably do this in your prefix header, simply because including it anywhere else is going to slow down builds by a lot.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
这是一个很大的标题,但它总是有效的。
您可能应该在前缀标头中执行此操作,因为将其包含在其他任何地方都会大大减慢构建速度。
It's a big header, but it always works.
You should probably do this in your prefix header, simply because including it anywhere else is going to slow down builds by a lot.