I\'m looking for a way to add a padding property to an UIView. Ideally, I would like to avoid subclassing and putting it in a category. The usage would be somet
padding
Update for Swift 3
view.bounds = view.frame.insetBy(dx: 10.0, dy: 10.0)
:)