Select Page

UDID usage rejected by Apple for iOS apps

In iOS 5+ Apple deprecated usage of the device UDID. It appears Apple started rejecting apps for using the UDID. The way to get an unique device id was: NSString *UDID = [[UIDevice currentDevice] uniqueIdentifier]; It appears this might get your app rejected…...

Enable GIT support for an existing XCode project

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...

NSLog format specifiers

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: %@...

Popup message in iOS with delegate

If you just want to show a popup message without responding to the buttons pressed look at the snippet : “Popup message in iOS” If you want to respond to a popup message the popup message probable has more than 1 button. To figure out what button got...