Re: creating a UITableView on an "Utility application" project

2010-05-17 Thread Alejandro Marcos Aragón
That worked like a charm! Thank you Matej... aa On May 17, 2010, at 1:32 PM, Matej Bukovinski wrote: > A navigation controller is not something that you can expect to be always > there. It has to be created first - ether in code or in interface builder. > The flip isn't managed by a navigation

Re: creating a UITableView on an "Utility application" project

2010-05-17 Thread Matej Bukovinski
A navigation controller is not something that you can expect to be always there. It has to be created first - ether in code or in interface builder. The flip isn't managed by a navigation controller. The main view controller is simply presenting modal view controller (every UIViewController can

Re: creating a UITableView on an "Utility application" project

2010-05-17 Thread Alejandro Marcos Aragón
Hi Fritz, thanks for your reply. I actually did what you said, that was not the problem. It seems that the "Utility Application" doesn't have a UINavigationController, so the pointer I was trying to push the view on was nil. I'm trying to figure out how to change the code of the "Utility Applic

Re: creating a UITableView on an "Utility application" project

2010-05-17 Thread Alejandro Marcos Aragón
Hi Matej, Thanks for your answer. I checked what you said and indeed the pointer is null. What I don't understand, is how this application doesn't have a UINavigationController. How am I switching between the front and back view if there isn't a navigation controller? I used the code you sugges

Re: creating a UITableView on an "Utility application" project

2010-05-16 Thread Fritz Anderson
On 16 May 2010, at 5:06 PM, Alejandro Aragón wrote: > In the interface builder, I assigned the DetailViewController class to the > view. Now, in the FlipsideViewController class, I added the function that is > supposed to handle the action when the user clicks on a row: You should have set the cl

Fwd: creating a UITableView on an "Utility application" project

2010-05-16 Thread Alejandro Aragón
Hi everyone, I'm new to iPhone development and I'm really stuck at this point. I apologize for the lengthy email, but I wanted to provide all the relevant code. I've been trying to add a UITableView to an existing Utility Application programmatically. In order to add the UITableView to the flip si