Adding rows to UItableview and passing data between Viewcontrollers

Posted by Jonathan on Stack Overflow See other posts from Stack Overflow or by Jonathan
Published on 2010-05-15T19:06:23Z Indexed on 2010/05/15 19:14 UTC
Read the original article Hit count: 544

Filed under:
|
|
|

I have a list of websites in a plist, when the app loads this populates a tableview (which is inside a navigation controller)

But I have added an add button to the navigation bar and then created another View Controller to deal with inputting of the new website (Like Title and URL). It is very similar to how the contacts app looks. There is a table view and when you tap add, the add UI slides up. I have got all this working great so far.

My Problem is what happens when the user taps Done. I can add the website to the plist (each website is a dictionary in the plist with 2 keys, atm) But then how do I tell the tableView to update? The table view has not been removed from the main window, just the add view has been added on top of the "screen".

Another way of asking is, when you tap Save on Add a Contact screen: (not my image) http://www.iphone-recovery.com/wp-content/uploads/2008/01/jcontact.jpg How does the new contact's data (Xyz's data) get shown on the tableview?

© Stack Overflow or respective owner

Related posts about uitableview

Related posts about iphone