Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  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. }