You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
520 B

6 years ago
  1. //
  2. // UIColorExtension.swift
  3. // GMERemittance
  4. //
  5. // Created by Fm-user on 2/2/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. extension UIColor {
  10. convenience init(hex: Int) {
  11. let components = (
  12. R: CGFloat((hex >> 16) & 0xff) / 255,
  13. G: CGFloat((hex >> 08) & 0xff) / 255,
  14. B: CGFloat((hex >> 00) & 0xff) / 255
  15. )
  16. self.init(red: components.R, green: components.G, blue: components.B, alpha: 1)
  17. }
  18. }