MobiNav

All Things Mobility

avril 22nd, 2013

Rumor: Is Apple Looking For A Replacement For CEO Cook?

According to Forbes, Apple is secretly searching a new CEO to replace Tim Cook.

novembre 15th, 2010
septembre 16th, 2010

Best Practices for Creating and Deploying HTTP Live Streaming Media for the iPhone and iPad

Technical Note TN2224 (go)
This Technote discusses some best practices for creating and deploying HTTP Live Streaming Media for the iPhone and iPad.

avril 23rd, 2010

GDB useful command

  • thread apply all bt

dump a backtrace of every thread.

mars 31st, 2010

iPhone Crash Logs

Here is good article which explains clearly how to use iPhone Crash logs.

février 24th, 2010

Screen shot of iPhone

Press the Sleep/wake and Home buttom together.
The screen shot can be then found in the Photo Albums.

janvier 27th, 2010

iPad : specs techniques

  • taille : 242.8 mm x 189.7 mm x 13.4 mm 4/3
  • Apple A4 1GHz processeur
  • poids : 680 g pour le modèle WiFi seulement, 730 g pour la version incorporant la connectivité 3G
  • écran de 9,7 pouces, résolution de 1024 par 768
  • connectivité : Wi-Fi (802.11 a/b/g/n) et Bluetooth 2.1, pour la version 3G : UMTS/HSDPA (850, 1900, 2100 MHz), GSM/EDGE (850, 900,1800, 1900 MHz)
  • GPS intégré, boussole, accélèromètre, capteur de luminosité
  • mémoire de stockage : 16, 32 ou 64 Go de mémoire flash
  • autonomie: 10h, 30jrs en veil. 2/3h en WiFi
  • sortie vidéo jusqu’à 1024 x 768, avec le câble adapté, depuis le dock
  • boutons externes : les même qu’un iPhone :home, on / off, volume haut / bas, silence
  • hauts-parleurs intégrés
  • entrée jack 3,5 mm
janvier 20th, 2010

How to disable auto-lock

UIApplication *thisApp = [UIApplication sharedApplication];
thisApp.idleTimerDisabled = YES;

décembre 30th, 2009

Where in the world are Apple’s 78 million handsets?

According to a recent analysis, Apple will have sold 78 millions iPhone and iPod touche devices worldwild by the end of december 2009.

octobre 12th, 2009

How to Enable Objective C++ compilation?

There are three solutions to active Objective C++ compilations

  1. By Objective C++ default file extention: .mm — This a most security way to active Objective C++ complilation. Xcode will set automatically the corresponding runtime target for the project at build time.
  2. Set Xcode project build settings(under GCC 4.2 Language) — Either add -x objectiveC++ to « Other C Flags » or set « Compile Sources As » to « ObjectiveC++ »
  3. Select the file from Xcode’s Groups & Files list, select File->Get Info and changge the file type to « Sourcecode.cpp.objcpp ».