iPhone Coding Tutorial – Creating an Online Leaderboard For Your Games

October 29th, 2009 Posted by: - posted under:Tutorials - 47 Comments

As you may have seen, there are quite a few services out there offering free leaderboards. These are great and all, but sometimes you want to have complete control over your data. I have put together a complete tutorial detailing step by step how you can create your own online leaderboard. This will also give you a very simple introduction to interfacing with web services.

    READ MORE

    Floodgates opened for iPhone development

    October 12th, 2009 Posted by: - posted under:Articles - 12 Comments

    For as active as iPhone application development community is, achieving success in iTunes has been an elusive affair for those who participate in this vertical. The two main obstacles presented to anyone who wants to create an iPhone applications are: one, finding resources/developers with the right skill set; and two, marketing the application after the application has been submitted. The bad news is Apple keeps iTunes a black box. Unless your application has been reviewed or mentioned on review sites or blogs, no one will be able to find your application outside of iTunes. This makes marketing your application relatively difficult. Here’s the good news: the cost to build an iPhone application should come down substantially as it no longer requires a developer with an exclusive knowledge to a specific technology to build an application for iPhone.

      READ MORE

      Debugging Tutorial – Automating Your Tests With A UIRecorder Instrument

      October 6th, 2009 Posted by: - posted under:Tutorials - 15 Comments

      If you have ever experienced a bug in your application that took many steps to reproduce, then this tutorial is for you. By nature, testing and debugging are very tedious processes. This is especially the case for the iPhone.
      Say you have an app that drills down 5-levels deep to some other view. Now let’s say that you have a bug on that view 5 levels deep. Your normal method of debugging is:

      Run the app
      Tap view 1
      Tap …

        READ MORE

        360iDev Conference Day 1

        September 27th, 2009 Posted by: - posted under:Articles - 5 Comments


        Today was the beginning of the in Denver Colorado. So far, I must say I am very impressed. There have been some great speakers and some very smart dudes in attendance. In case you are unfamiliar with 360iDev, here is a bit about it (from their ).
        360|iDev is the premiere iPhone, iPod Touch developer conference in the world. We bring together the best speakers and sponsors in the industry under one roof!
        The …

          READ MORE

          Code Snippet – Quickly Find The Documents Directory

          September 9th, 2009 Posted by: - posted under:Snippets - 9 Comments

          As many of you may have seen by now, there are quite a few ways to find the documents directory on the iPhone. For those of you who don’t know, the documents directory of an app is the location where you should save your application data. While finding the documents directory is a trivial task, it is very important when coding most applications. Apple has provided quite a few ways for resolving the path to this directory.
          If …

            READ MORE

            Objective-C Tutorial: NSArray

            August 26th, 2009 Posted by: - posted under:Tutorials - 43 Comments

            The NSArray is a huge workhorse that we use quite frequently without even thinking about it. The NSArray class isn’t just your ordinary array. Not only does it provide random access, but it also dynamically re-sizes when you add new objects to it. While I won’t go over every method in NSArray (there are quite a few), I will discuss some of the more important ones that are most commonly used. Let’s take a closer look at this class.

              READ MORE

              Forums Are Back!

              August 4th, 2009 Posted by: - posted under:Articles - 4 Comments

              After the server switch, we seemed to have lost the forums. They are now back up at http://icodeblog.com/forum .
              I will do my best to keep up with them (as I have tended to neglect them in the past). Just, please don’t write posts like “Would you make a tutorial about creating an online craps game that allows user chat”. I will not write your programs for you. I guess in some users case I …

                READ MORE

                How to deal with iPhone Device Provisioning without Stabbing Your Eyes Out

                July 31st, 2009 Posted by: - posted under:Articles - 13 Comments

                Introduction
                So for any developer than has joined the iPhone Development program and attempted to throw their app on their phone, the process of provisioning is a familiar and likely painful process. Like many developer you may have several projects going on possibly for several organizations. You can think of provisioning as the paper work your app needs to fill out in order to “board” your phone. The process involves ____ steps:

                Get an iPhone Developer Account
                Create a certificate request
                Download your approved …

                  READ MORE

                  iPhone Development: Where is all the $$$

                  July 29th, 2009 Posted by: - posted under:Articles - 10 Comments

                  Hey guys,
                  So this is the first post we are doing that is more about developers than about developing. The Guardian put up a great today talking about the app store, developers and what is driving sales. The app store has most certainly solidified itself, at least for the time being, as the most dominant mobile application distribution system; but what does the future of the “App Economy” look like?
                  The App Store is really …

                    READ MORE

                    Getting Images From The iPhone Photo Library Or Camera Using UIImagePickerController

                    July 28th, 2009 Posted by: - posted under:Tutorials - 74 Comments

                    This will be a simple tutorial showing you how to access the iPhone’s photo library as well as the camera. Since the 3.0 update, the methods for picking photos have been . So this will be a 3.0 and above tutorial.
                    We will be creating an applicaiton that will allow you to pick a photo from the library or camera and display it on the screen. Here is a screenshot of what the app will look like:

                      READ MORE