by Mobiledev | Sep 4, 2011 | iOS, XCode
The artwork for an iOS app can become a lot of work. Icons and images for different resolutions are needed, and there are some naming conventions. If you stick to the naming conventions the correct icons/images will automatically be selected when those icons/images...
by Mobiledev | Sep 2, 2011 | XCode
XCode 4 brings us GIT support (XCode 4.1+ now also brings us GIT server support). That’s great! For a new project just tick the “Create local GIT repository…” check-box in the new project dialog. But what about older projects? Enabling GIT for...
by Mobiledev | Aug 31, 2011 | Uncategorized
Apple Mail has no easy configuration for multiple identities. It is possible to use multiple identities for sending mail, but the configuration is a bit weird! (tested this with Lion…) In Apple Mail go to: Menu “Mail” “Preferences” Select...
by Mobiledev | Aug 30, 2011 | iOS, iPad, iPhone, XCode
Ever noticed that on iOS devices there are icons with “gloss” and icons without? The Twitter icon below does have a gloss, the Dropbox icon does not. The default setting in an XCode project is to apply gloss to your icons. If your icon already has a gloss...
by Mobiledev | Aug 29, 2011 | iOS, XCode
Logging has a lot of possible format specifiers. The general syntax of NSLog is: NSLog(@”Text %@”, object); NSLog(@”I want to log: %@”, myString); int i = 1234; NSLog(@”The number is: %d”, i); The possible format specifiers are: %@...
Recent Comments