by Mobiledev | Apr 16, 2015 | Uncategorized
To create a WIFI access point on Windows do the following: – Run a command window as administrator (right click command window icon, run as admin) – Enter: [plain]netsh wlan set hostednetwork mode=allow "ssid=ssid" "key=key”...
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 26, 2012 | OSX, PHP
Microsoft introduced a new protocol for the data they put in the Azure cloud. It is called “OData”. MS also published some client and server tools to consume and produce OData (see: http://odataphp.codeplex.com/ ). The PHP consumer for OData has some...
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 | 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