ios – CGRect.offsetBy不工作

前端之家收集整理的这篇文章主要介绍了ios – CGRect.offsetBy不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我如何重写下面的代码
self.view.frame = CGRectOffset(self.view.frame,movement)

‘Offset’ has been replaced by ‘offsetby’

当我用所谓的“解决方案”替换它时:

self.view.frame = CGRect.offsetby(self.view.frame,movement)

我收到一个错误

“Instance member ‘offsetBy’ cannot be used on type ‘CGRect’; did you mean to use a value of this type instead?”

解决方法

您必须在CGRect的实例上调用offsetBy.
self.view.frame = self.view.frame.offsetBy(dx: 0,dy: movement)
原文链接:https://www.f2er.com/iOS/332264.html

猜你在找的iOS相关文章