by Mobiledev | Mar 20, 2012 | OSX
SSH (Secure SHell) is a pretty good and secure way to connect from a remote machine to your OSX machine. All communication through SSH is encrypted, including the exchange of passwords! Luckily SSH is already on your machine by default, you only have to enable it. To...
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 18, 2012 | OSX, XCode
XCode inserts in all project template code a line like: // Copyright 2012 __MyCompanyName__. All rights reserved. It is possible to set __MyCompanyName__ to a different (probably more useful) default for all XCode projects. To do this: – Open the “Address...
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