Skip to content

Instantly share code, notes, and snippets.

@apisit
Created July 24, 2013 18:27
Show Gist options
  • Save apisit/6073146 to your computer and use it in GitHub Desktop.
Save apisit/6073146 to your computer and use it in GitHub Desktop.
UIColor with RGBA. simply use rgba(149, 165, 166,1.0);
UIColor* rgba(CGFloat r,CGFloat g,CGFloat b,CGFloat a){
return [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:a];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment