Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #if os(iOS) || os(tvOS)
  2. import UIKit
  3. public typealias Color = UIColor
  4. #else
  5. import Cocoa
  6. public typealias Color = NSColor
  7. #endif
  8.  
  9. extension Color {
  10. internal convenience init(hex: String) {
  11. // ...
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement