Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. [Graphics] UIColor created with component values far outside the expected range, Set a breakpoint on UIColorBreakForOutOfRangeColorComponents to debug. This message will only be logged once.
  2.  
  3. UIColor(red: 255, green: 255, blue: 255, alpha: 1.0)
  4.  
  5. UIColor(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
  6. SO : UIColor(red: 255/255, green: 255/255, blue: 255/255, alpha: 1.0)
  7.  
  8. UIColor(red: <Your color>/255.0, green: <Your color>/255.0, blue: <Your color>/255.0, alpha: 1.0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement