The main goal of this workshop is to show you how to implement the row deletion event performed by the app user. When the user is presented with a list of items in the DetailViewController.xib file, she can put the view’s tableView control in edit mode by simply tapping the navigation bar’s Edit button or […]
Category: Objc App Development
The main goal of this workshop is to show you how to implement the row ordering event performed by the app user. How The User Rearrange The tableView Row When the user is presented with a list of items in the DetailViewController.xib file, she can put the view’s tableView control in edit mode by simply […]
The main goal of this workshop is to show you how to implement the row selection event performed by the app user. What We’ll Do? When the user is presented with a list of categories in the MasterViewController’s tableView control, he should be able to tap a row. The app should respond by displaying a […]
The main goal of this workshop is to show you how to persist the MasterViewController’s tableView data in a Property List file which resides in the application sandbox’s Documents directory. This mean you’ll have to add code in the AppDelegate class and the AddItemViewController class to make that happen. The AppDelegate Code Add this code in the […]