我在Swift 3之前工作(其中frame
是CGRect):
extraLightBlurView.frame.makeIntegralInPlace()
但它在Swift 3中返回错误Value of type 'CGRect' has no member 'makeIntegralInPlace'
。如何解决这个问题?
答案 0 :(得分:2)
在Swift 3中不可用。请改用integral
属性:
extraLightBlurView.frame = extraLightBlurView.frame.integral