Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Swift 2 Blueprints

You're reading from   Swift 2 Blueprints Swift Blueprints

Arrow left icon
Product type Paperback
Published in Oct 2015
Publisher Packt
ISBN-13 9781783980765
Length 276 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Cecil Costa Cecil Costa
Author Profile Icon Cecil Costa
Cecil Costa
Arrow right icon
View More author details
Toc

Table of Contents (10) Chapters Close

Preface 1. Exploring Xcode FREE CHAPTER 2. Creating a City Information App with Customized Table Views 3. Creating a Photo Sharing App 4. Simulating Home Automation with HomeKit 5. Health Analyzing App Using HealthKit 6. Creating a Game App Using SpriteKit 7. Creating an Apple Watch App 8. AVFoundation Index

A scene to add supplies


Starting with the option to add supplies, we create a new file in the project called AddSuppliesViewController.swift. Start importing UIKit and creating a class that inherits from UIViewController with the same name as the file. This class will also work with UIPickerView, which implies that we have to implement the UIPickerViewDataSource and UIPickerViewDelegate protocols. We will also need to implement UITextFieldDelegate. Leave this class empty for now; don't worry about the compiler errors:

class AddSupplyViewController: UIViewController, UIPickerViewDataSource, UIPickerViewDelegate, UITextFieldDelegate
{
}

Return to the storyboard and add a new view controller to it. Connect the AddSupply button from the first scene to this new view controller by control-dragging it from the button to the new scene. Update the scene class in its Identity inspector to AddSupplyViewController as shown in the following screenshot:

In this scene, we need to set the product name, the...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £16.99/month. Cancel anytime