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

How to blink a button iOS swift?

iOS flutter while run to iPhone it had the error - Cannot find type 'PhoneNumberKit' in scope