Tweet In the old days of iOS when you pressed the home button the application you where running in your iphone used to quit instantly. Today with iOS 4 you have a few more options. Multitasking is the most relevant feature included in iOS 4. If you build an application on Xcode against iOS 4 [...]
iOS Advanced Programming: Understanding iOS 4 Multitasking
by OscarVGG on 06. Dec, 2010 in iOS, Tutorials
iOS Advanced Programming: Event Kit Framework
by OscarVGG on 29. Nov, 2010 in iOS, Tutorials
The Event Kit Framework is the way apple wants us to display or create a calendar entry. With this they are not trying to replace the calendar app, they are trying to give us a way to, for instance, create an appointment from our app and add it to the calendar app.
iOS Advanced Programming: The Image picker
by OscarVGG on 22. Nov, 2010 in iOS, Tutorials
The image picker is a controller that allows you to select an image from a thumbnail list or take it with the camera and then grab that selection and do whatever you want with it.
How to make an iPhone App – Part 7: The app icon
by OscarVGG on 15. Nov, 2010 in iOS, Tutorials
To publish your app to the app store it needs to have an icon, and it can not be the white one that you see by default in the simulator.
How to make an iPhone App – Part 6: Saving Data
by OscarVGG on 08. Nov, 2010 in iOS, Tutorials
It might not look like so, but your iPhone does have a file system, the thing is that is not the kind of file system that we are used to. To save your data you will only have a directory and you won’t be able to choose it.
How to make an iPhone App – Part 5: The Accelerometer
by OscarVGG on 01. Nov, 2010 in iOS, Tutorials
Yes, your iPhone has an accelerometer. I know this is not a physics class but the best way to define it is saying that it is a device to detect the magnitude and direction of acceleration. iDevices uses it to detect rotation, shake gestures, among others.
How to make an iPhone App – Part 4: Navigation Controller
by OscarVGG on 25. Oct, 2010 in iOS, Tutorials
Now that we know how to create a table views, we are going to use that knowledge to create a new project using a navigation controller to see a more detailed view of the tittle in the cell of the table view.
How to make an iPhone App – Part 3: Table Views
by OscarVGG on 18. Oct, 2010 in iOS, Tutorials
Table views are probably the most common control in iPhone apps. If you have used the Messages app, Mail app, Twitter app, between many others, then you know what i’m talking about. You may have seen them with just text, with a tittle and a description, with an image but they are all table views.
How to make an iPhone App for beginners – Part 2: Memory and Controllers
by OscarVGG on 11. Oct, 2010 in iOS, Tutorials
Memory is probably the most boring part of iPhone development, but also one of the most important. Depending on the iPhone you have you will have available more or less than 256MB’s (iPhone 3GS), where part of that is shared with the OS, leaving you less than 128MB’s, so you have to be very careful managing memory or Apple may reject your app.
How to make iPhone Apps – Part 1: Xcode suite and Objective-C
by OscarVGG on 04. Oct, 2010 in iOS, Tutorials
Learn how to make iPhone/iPod-Touch applications using the iPhone SDK. We’ll make many applications to illustrate basic iPhone development workflows and coding techniques that are fundamental for your formation as an iPhone Developer.
