CGAffineTransformMakeScale 链接器错误
我有这一行:
imgView.transform = CGAffineTransformMakeScale(-1, 1);
我想水平翻转我的 UIImageView 并尝试了上面的这一行,但是它给了我一个链接器错误并且无法工作出问题。
有人可以帮我解决这个问题或找到翻转我的 UIImageView 的替代方法吗?
谢谢。
I have this line:
imgView.transform = CGAffineTransformMakeScale(-1, 1);
I want to flip my UIImageView horizontally and tried this line above, however it is giving me a linker error and can't work out the issue.
Can someone please help me fix this or find an alternative way of flipping my UIImageView.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您链接的是 CoreGraphics。在您的项目中,转到“构建阶段”并查看“将二进制文件与库链接”下并检查“CoreGraphics.framework”。
如果这不是问题,请将链接器错误复制/粘贴到您的问题中。
希望有帮助。
Make sure you are linking against CoreGraphics. In your project, go to Build Phases and look under "Link Binary with Libraries" and check for "CoreGraphics.framework".
If that is not the issue, pls copy/paste the linker error into your question.
Hope that helps.