Four times more pixels than iPad 2. Razor-sharp text. Richer colors. The Retina display transforms the entire iPad experience. So everything looks and feels incredibly lifelike and perfectly detailed. The A5X chip with quad-core graphics drives four times the pixels of iPad 2 yet it delivers the same smoothness and fluidity iPad is …
Tag Archive: iPad
Mar
07
Sep
11
iPhone app requires camera functionality
If your app is based(in order to run your app camera is necessary) on camera functionality then follow below steps 1) Open Info.plist 2) Click + 3) Add RequiredDeviceCapabilities on the Key column 4) Add still-camera on the Value column 5) Save the updated Info.plist If some part of your app requires camera functionality then …
Aug
02
How to change UINavigationController RGB color
Place below code after @implementation #define UIColorFromRGB(rgbValue) \ [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \ green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \ blue:((float)(rgbValue & 0xFF))/255.0 \ alpha:1.0] Place below line in viewDidLoad method self.navigationController.navigationBar.tintColor = UIColorFromRGB(0×477400);
Aug
02
How to change UINavigationController color
Here’s the code self.navigationController.navigationBar.tintColor = [UIColor redColor];
