Archive for the ‘development’ Category

My first iPhone application

My first application developed for the iPhone is now available in AppStore. Read more about the application here. You can also take a closer look in iTunes via this link.

Storing custom objects to disk on the iPhone

In this tutorial I will show you how you can store custom objects to disk on the iPhone. I will create a simple array containing custom Person objects. Then I will store the array to disk and afterwards load the array. The clue is to implement the NSCoding protocol in the Person class, or the [...]