UIEdgeInsetsInsetRect not working in swift 5

Solution:

 The below code is used in swift 4.In swift 5 it shows as error.

Swift 4:
UIEdgeInsetsInsetRect(relativeFrame, self.touchAreaEdgeInsets)

swift 5:

relativeFrame.inset(by: self.touchAreaEdgeInsets)


Relative frame is known as the frame that you want to set the edges.

Comments

Popular posts from this blog

store cgpoint in userdefaults iOS swift

libc++abi: terminating due to uncaught exception of type NSException iOS swift