无法使用 CATRansform3DMakeRotation 在 xcode 中构建 iphone 项目
我需要在项目中使用 CATRansform3DMakeRotation 函数,但是当我尝试编译时,
Undefined symbols:
"_CATransform3DMakeRotation", referenced from:
如果我注释掉该函数,项目构建正常,则会出现构建错误。
有什么想法为什么会发生这种情况吗?
I need to use CATRansform3DMakeRotation function in my project, but when I try to compile I get an build error
Undefined symbols:
"_CATransform3DMakeRotation", referenced from:
if I comment the function out the project builds fine.
Any ideas why is this happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅仅包含 QuartzCore 头文件还不够,还必须右键单击“Frameworks”,选择“Add Existing Frameworks”并添加“QuartzCore.framework”。问题解决了:)
Not enough to include the QuartzCore header file, you also have to right click "Frameworks", select "Add Existing Frameworks" and add "QuartzCore.framework". Problem solved :)
您需要将 Quartz Core 框架添加到您的目标中。
在左侧 Xcode“组和文件”窗格中找到您的主要目标。双击它,在“常规”选项卡中,您需要点击“链接库”下的“+”按钮。选择“QuartzCode.framework”并点击“添加”。
现在构建,您应该可以开始了。
You need to add the Quartz Core framework to your target.
Find your main target in the left-hand Xcode "Groups and Files" pane. Double-click it, and in the "General" tab you need to hit the "+" button under the Linked Libraries. Choose "QuartzCode.framework" and hit Add.
Now build and you should be good to go.