-
Subscribe
Categories
Tutorials
- iPhone Programming Tutorial – Local Notifications
- How To Integrate Google Analytics Tracking Into Your Apps In 7 Minutes
- Pick Your Own Adventure iPhone Edition
- iPhone Coding – Turbo Charging Your Apps With NSOperation
- iPhone Coding Recipe – Shortening URLs
- iPhone Coding Recipe: Live Character Counter, Word filter, and 1337 Translator For A UITextField
- UITextField – A Complete API Overview
- iPhone Coding Tutorial – In Application Emailing
- iPhone Coding Tutorial – Inserting A UITextField In A UIAlertView
- iPhone Coding Tutorial – Creating an Online Leaderboard For Your Games
-
Archives
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
Recent Comments
- Tobias Becker on iPhone Programming Tutorial – Intro to SOAP Web Services
- Jef on iPhone Programming Tutorial – Transitioning Between Views
- joe on iPhone Game Programming Tutorial – Part 1
- joe on iPhone Game Programming Tutorial – Part 1
- andy on iPhone Game Programming Tutorial – Part 1
- andy on iPhone Game Programming Tutorial – Part 1
- Anneke on iPhone Programming Tutorial – Using A TabBarView To Switch Between Views
- Afflick on Custom UITableViewCell Using Interface Builder
- Afflick on Custom UITableViewCell Using Interface Builder
- Bluebaroo on iPhone Programming Tutorial: Animating A Game Sprite
Category Archives: Code Snippets
NSTimer: The Poor Man’s Threading – Code Snapshot
Introduction Hey guys. So usually the posts we put up here involve screencasts and presentations, but we are going to start also posting small less time consuming pieces for the site. Today I bring to you a small project involving [...]
Code Snippet: Prevent The iPhone From Sleeping
The code below will prevent the iPhone from dimming its screen and ultimately going to sleep. Use it wisely as you don't want your application becoming notorious for being a battery hog :) [UIApplication sharedApplication].idleTimerDisabled = YES; Happy iCoding!
Creating a document centric iPhone/iPad application with own file format using ZipArchive
If I need to predict one thing about where the App Store is heading to, now that the iPad has been released, I would say “It’s going to be less about farting apps and much more about productivity apps” Yes - the iPad has already changed the game drastically - with an almost real life size keyboard, large beautiful screen and file sharing direct in iTunes you can achieve much more than before. But hey, iPhone OS 4.0 is just around the corner, and I bet one of those new features will be the same file sharing you get on the iPad.
Also posted in Featured, iPhone Articles Tagged custom, file format, how to, ipad, iphone, NSFileManager, ZipArchive 10 Comments
NSTimer: The Poor Man’s Threading – Code Snapshot
Introduction Hey guys. So usually the posts we put up here involve screencasts and presentations, but we are going to start also posting small less time consuming pieces for the site. Today I bring to you a small project involving [...]
Code Snippet: Prevent The iPhone From Sleeping
The code below will prevent the iPhone from dimming its screen and ultimately going to sleep. Use it wisely as you don't want your application becoming notorious for being a battery hog :) [UIApplication sharedApplication].idleTimerDisabled = YES; Happy iCoding!


Creating a document centric iPhone/iPad application with own file format using ZipArchive