Advertisement
Guest User

Untitled

a guest
Nov 25th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
  2.      
  3.     // Override point for customization after application launch.
  4.      
  5.     // Converting RGBA color for use with UIColor
  6.     UIColor *colorFromRgba = [UIColor colorWithRed:23/255.0f green:45/255.0f blue:145/255.0f alpha:1];
  7.     NSLog(@"converted rgba color is: %@", colorFromRgba);
  8.                              
  9.     [self.window makeKeyAndVisible];
  10.      
  11.     return YES;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement