CTFont 和 Core Text 框架
我正在尝试在 iPhone 应用程序中使用 CTFont。我已经:-
- 添加了核心文本框架
- 添加了#import“CoreText/CoreText”。到我试图在其中使用 CTFont 的文件。
但是编译器说“CTFont 未声明”
???我缺少什么?
I'm trying to use CTFont in an iPhone app. I have :-
- Added the Core Text framework
- Added #import "CoreText/CoreText." to the file I am trying to use CTFont in.
However the compiler is saying that "CTFont undeclared"
??? what am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该 #import
You should #import <CoreText/CoreText.h>
另外,以防万一您仍然遇到问题。 CTFontRef 是您想要的结构而不是 CTFont
Also, just incase your still having issues. CTFontRef is the struct you want not CTFont