Posts tagged as: iphone programming

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 4

September 22nd, 2008 Posted by: - posted under:Tutorials - 115 Comments

This is the final installment of our 4 part series of creating a Todo list for the iPhone. In this tutorial, I will detail how to add and delete new todo objects from the SQLite database. Make sure that you have completed the following tutorials before you begin this one:

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 1

READ MORE

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 3

September 10th, 2008 Posted by: - posted under:Tutorials - 68 Comments

This is part 3 in our multipart series of creating a todo list for the iPhone. For this, you must have completed the following tutorials.

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 1
iPhone Programming Tutorial – Creating a ToDo List Using SQLite …

READ MORE

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 2

September 2nd, 2008 Posted by: - posted under:Tutorials - 111 Comments

This tutorial is part 2 in our series of creating a to-do list. I will assume that you have completed the following tutorial and its prequisites.

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 1

I will be using the code produced from that tutorial as a base for this one. When you are finished with this tutorial, your application will look something like this:

In this section, I will not only teach you how to …

READ MORE

iPhone Programming Tutorial – Creating a ToDo List Using SQLite Part 1

August 19th, 2008 Posted by: - posted under:Tutorials - 233 Comments

If you have been following my tutorials, you know that we have been working primarily with UITableViews. This is mostly because SO many applications can be developed using this simple control. This final UITableView tutorial will be taking all of the skills learned from previous tutorials, putting them all together, and adding SQLite to create a prioritized To-Do list. I will also be showing you how to add multiple columns to your table cells and we will …

READ MORE

iPhone Programming Tutorial – Populating UITableView With An NSArray

August 8th, 2008 Posted by: - posted under:Tutorials - 327 Comments

The goal of this tutorial is to show you how to populate a UITableView with data from an array of objects. This will be the building block to display XML data as well as SQL data.
The theme of this application will be fruit. We will create an array of “fruit” objects that have some additional information besides the name. We will populate a UITableView with the names of the fruits. When the user selects a fruit …

READ MORE

iPhone Programming Tutorial – Transitioning Between Views

August 3rd, 2008 Posted by: - posted under:Tutorials - 211 Comments

This tutorial will focus on transitioning from one view to another. We will be utilizing Apple’s UINavigationController. I will be using the code from the “Hello World” tutorial that I previously wrote. So if you have not completed it yet, go ahead and do it and come back to this page. (It’s quick I promise). You can view it here.
In this tutorial you will learn:

Add A …

READ MORE

iPhone Programming Tutorial – Connecting Code to An Interface Builder View

July 30th, 2008 Posted by: - posted under:Tutorials - 215 Comments

Finally, we get to write some real code! In this tutorial, I will show you how to create an interface using Interface Builder and connect it to your code. We will be creating a UITextField, UILabel, and a Button. Now, don’t be intimidated that this tutorial is so long. I have really went into detail explaining everything as I go. You could easily scan over it and get the gist of it. Here’s how the application …

READ MORE