W.venus
W.venus

Reputation: 470

Swift 3.0 converting error fix

I have a swift 2.2 project. Now I upgraded it to Swift 3.0 but I have some errors.

open var gridClippingRect: CGRect
{
    var contentRect = viewPortHandler?.contentRect ?? CGRect.zero
    contentRect.insetInPlace(dx: 0.0, dy: -(self.axis?.gridLineWidth ?? 0.0) / 2.0)
    return contentRect
}

error: Value of type 'CGRect' has no member 'insetInPlace'

How to fix this error?

Upvotes: 4

Views: 1434

Answers (1)

rmaddy
rmaddy

Reputation: 318944

Looking at the docs for CGRect, the closest method is insetBy:dx:dy: which returns a new CGRect. So the following code should work for you:

contentRect = contentRect.insetBy(dx: 0.0, dy: -(self.axis?.gridLineWidth ?? 0.0) / 2.0)

Upvotes: 9

Related Questions