by Mobiledev | May 13, 2013 | iOS, iPad
iPad manuals in different languages for the latest OS German http://manuals.info.apple.com/de_DE/ipad_benutzerhandbuch.pdf Spanish http://manuals.info.apple.com/es_ES/ipad_manual_del_usuario.pdf French...
by Mobiledev | Jun 11, 2012 | iOS
Live notes from the wwdc keynote,San Francisco, Moscone West, monday june 11, 2012. 10:00 session starts! A Siri intro with some jokes. 10:01 Tim Cook enters te stage 23thd wwdc, attendees from 60 countries, over a 1000 Apple engineers. 400 milion app store accounts....
by Mobiledev | Mar 25, 2012 | iOS, iPad, iPhone, XCode
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…...
by Mobiledev | Feb 29, 2012 | iOS, Uncategorized, XCode
Working with (user) preferences is pretty easy in Objective c. Preferences is just a phrase for persisting some info. If you need to save and load some small things, and you think a database is overkill, than user preferences might be just right. Below a helper class...
by Mobiledev | Feb 14, 2012 | iOS, iPad, iPhone, OSX
Have a look at the strings used in an app. This is not really decompiling, but it can get you some useful info about what strings are visible in an app. If the app has been distributed via the Apple appstore, the binary will have been encrypted. For decryption try...
by Mobiledev | Jan 17, 2012 | iOS, iPad, iPhone, XCode
When a textbox has focus, and pops up a keyboard, the keyboard can be removed with this statement: [self.textBox resignFirstResponder]; //If keyboard visible, remove keyboard In this example “textBox” was the textbox (UITextField) having the focus. If you...
Recent Comments