Last week you designed the List View Controller Scene and added code in its class files to add data in the Table View’s dataSource. Here’s what the List View Controller Scene look like now. Create and Configure a Segue for Navigation Bar + Button The first thing you have to do is create a segue […]
Category: Objc App Development
In this workshop, you’ll do the following: Create a new Xcode project Rename the View Controller class Add a Navigation Controller scene on the storyboard Add a new scene on the storyboard Add a new View Controller class in the project Connect the new View Controller class to the new scene Design and code the […]
In this three-part series, I will show you how to use the Table View control in a storyboard application. Together we will create a grocery list application that’ll pass data forward and backward as depicted in the image below. By the way, I assume you already know how to use the Table View control, if not […]
This is the final workshop in the Fundamental Storyboarding series and it you will learn how to pass data forward to a destination view controller. You do this by creating a segue in Interface Builder then define the Storyboard prepareForSegue:sender:sender: method in your source view controller’s implementation file. Passing Data forward to a Destination View Controller […]
Today you will learn how to perform the third storyboard operation, which is to pass data backward to a source view controller. You do this by performing an unwind segue. Understanding The Unwind Segue Operation First of all, an unwind segue operation involves a source view controller and a destination view controller. The source view controller […]