self.vIEw.frame = CGRectOffset(self.vIEw.frame,movement)
‘Offset’ has been replaced by ‘offsetby’
当我用所谓的“解决方案”替换它时:
self.vIEw.frame = CGRect.offsetby(self.vIEw.frame,movement)
我收到一个错误:
解决方法 您必须在CGRect的实例上调用offsetBy.“Instance member ‘offsetBy’ cannot be used on type ‘CGRect’; dID you mean to use a value of this type instead?”
self.vIEw.frame = self.vIEw.frame.offsetBy(dx: 0,dy: movement)总结
以上是内存溢出为你收集整理的ios – CGRect.offsetBy不工作全部内容,希望文章能够帮你解决ios – CGRect.offsetBy不工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)