“CGRect”类型的值没有成员'makeIntegralInPlace'

时间:2016-10-18 09:28:22

标签: swift swift3 cgrect

我在Swift 3之前工作(其中frame是CGRect):

extraLightBlurView.frame.makeIntegralInPlace()

但它在Swift 3中返回错误Value of type 'CGRect' has no member 'makeIntegralInPlace'。如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

在Swift 3中不可用。请改用integral属性:

extraLightBlurView.frame = extraLightBlurView.frame.integral

Documentation