Skip to main content

Posts

Showing posts from January, 2013

Debugging App Crashes

void uncaughtExceptionHandler(NSException *exception) {     NSLog(@"CRASH: %@", exception);     NSLog(@"Stack Trace: %@", [exception callStackSymbols]);     // Internal error reporting } - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {        NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);     // Normal launch stuff } StackOverflow

Google Maps SDK for iOS

The new Google Maps SDK for iOS allows users to view and interact with a Google map in your iOS app. With rotation, tilt, 3D buildings and many other features, you can create highly interactive apps for your users. Also, your app can launch the Google Maps for iPhone app using a URL scheme, enabling users to search, get directions and view Street View imagery. Google

AGOF - Mobile Facts 2012

Mit der mobile facts 2012-II legt die  Arbeitsgemeinschaft Online Forschung (AGOF) die neueste Welle ihrer Markt-Media-Studie zu Mobile-Werbeträgern vor. Gemäß der heute veröffentlichten Welle waren im zweiten Halbjahr 2012 pro Monat 21,30 Millionen Menschen mobil im Internet (30,3 Prozent der deutschsprachigen Wohnbevölkerung in Deutschland ab 14 Jahren, die 70,21 Millionen beträgt). Knapp dreiviertel dieser Nutzer (73,9 % bzw. 15,74 Mio.) werden dabei über AGOF Angebote erreicht. Die heute veröffentlichte mobile facts 2012-II weist Reichweiten- und Strukturdaten für 72 mobile-enabled Websites und 102 Applikationen von 14 Vermarktern aus. Hier finden Sie die zentralen Ergebnisse der mobile facts 2012-II, aufbereitet in einem Berichtsband und einer Grafiksammlung, sowie alle Rankings und Tabellen bequem zum Download. AGOF

Mobile Apps werden immer rentabler

Eine aktuelle Studie von Adobe Systems zeigt, dass immer mehr Leute über mobile Endgeräte einkaufen. Tablet User sogar doppelt so häufig wie Smartphone User. Online Marketing Adobe

Web sharing in OS X Mountain Lion

As MacMiniColo first reported, Apple’s preview release of OS X 10.8 Mountain Lion has quietly removed the “Web Sharing” option from System Preferences. That one little checkbox held a lot of power — it turned your Mac into a full featured web server, perfect for testing your development sites locally. So here’s a replacement System Preferences pane you can install that lets you manage Apache just like before. ClickOnTyler

NUI - Style iOS apps with a style sheet, similar to CSS

NUI is a drop-in UI kit for iOS that lets you style UI elements using a style sheet, similar to CSS. It lets you style an entire app in minutes. @primaryFontName: HelveticaNeue; @secondaryFontName: HelveticaNeue-Light; @primaryFontColor: #333333; @primaryBackgroundColor: #E6E6E6; Button {     background-color: @primaryBackgroundColor;     border-color: #A2A2A2;     border-width: @primaryBorderWidth;     font-color: @primaryFontColor;     font-color-highlighted: #999999;     font-name: @primaryFontName;     font-size: 18;     corner-radius: 7; } NavigationBar {     background-tint-color: @primaryBackgroundColor;     font-name: @secondaryFontName;     font-size: 20;     font-color: @primaryFontColor;     text-shadow-color: #666666;     text-shadow-offset: 1,1; } GitHub