当我使用此代码时,会出现一个错误:
let d = translation.x / CGRectGetWidth(pan.view!.bounds) * 0.5
“cgRectGetWidth”已被属性“cgRect.Width”替换
我该怎么解决?
最佳答案
您应该直接从bounds
属性获取宽度。
let d = translation.x / pan.view!.bounds.width * 0.5
关于swift - 使用属性“CGRectGetWidth”时出错,它表示已被“CGRect.width”替换,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48786472/