All posts in iPhone
Geizhals App Available
After quite some work, Apple just made our latest creation available on the App Store.
We are already getting some good reviews:

PandaKit
We just released a little, unpolished web app, to ease ad-hoc distribution of iOS apps and collecting and symbolicating crash reports: http://www.pandakit.com
Apotheken app launched today!
Get the iPhone Apotheken (Pharmacies) App here: http://www.apoapp.at
Zimt – OpenResearch iPhone Library
We just started our own public iPhone library: http://github.com/openresearch/zimt
For now it includes:
ZTFakeLocationManager
CLLocationManager subclass that can read a list of waypoints from a file and simulate location updates. Meant to be used on simulator for testing. See samples/FakeLocation
ZTWebSocket
Probably the first WebSocket client implementation written in Objective-C
How to get the current iPhone Language Code
We are currently developing an iPhone App which requires localization support and I ran into an issue while trying to get currently set language.
Cocoa Touch has a class called NSLocale which let’s you query the language by writing the following code:
[NSLocale currentLocale] objectForKey:NSLocaleLanguageCode];
At least one would expect so, but it actually gives you the language of the region format you have configured in your settings.
For example:
If you have your iPhone language set to ‘English’, but your region format is set to ‘Germany’, the call will return ‘de’ instead of ‘en’.
What you really should call is:
[[NSLocale preferredLanguages] objectAtIndex:0]
Because this gives you not the language associated with the region, but the language the device is actually configured for.








