UIEdgeInset+Extension.swift 433 B

12345678910111213141516171819202122
  1. //
  2. // UIEdgeInset+Extension.swift
  3. // TitleImageEdgeinsetsButton
  4. //
  5. // Created by chunxi on 2019/1/10.
  6. // Copyright © 2019 chunxi. All rights reserved.
  7. //
  8. import UIKit
  9. internal extension UIEdgeInsets {
  10. mutating func updateLeftAndRight(left: CGFloat) {
  11. self.left = left
  12. self.right = -left
  13. }
  14. mutating func updateTopAndBottom(top: CGFloat) {
  15. self.top = top
  16. self.bottom = -top
  17. }
  18. }