iPhone 中 UIBezierPath 的替代方案
我已经使用 UIBezierPath 在弯曲路径中对图像进行动画处理,但 iOS 3.2 或更高版本支持 UIBezierPath,我需要支持 3.0 的应用程序,我该怎么做?
I have used UIBezierPath for animating a image in a curved path, but UIBezierPath is supported for iOS 3.2 or later, I need to support my app for 3.0 how can i do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很简单,不要使用 UIBezierPath。只需创建一个 CGMutablePathRef 来代替普通的 Core Graphics 函数。
Simple, don't use
UIBezierPath
. Just create aCGMutablePathRef
instead with the plain Core Graphics functions.