无法使用 CATRansform3DMakeRotation 在 xcode 中构建 iphone 项目

发布于 2024-09-02 06:10:40 字数 215 浏览 2 评论 0原文

我需要在项目中使用 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 技术交流群。

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

发布评论

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

评论(2

2024-09-09 06:10:40

仅仅包含 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 :)

ヤ经典坏疍 2024-09-09 06:10:40

您需要将 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.

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