In this three part tutorial series, you learned how to use the iOS pickerView control using the Swift Programming. An Objective-C version of this tutorial series can be accessed here.

Before we begin, I assume the following:

  • You’ve read the Objective-C version of this tutorial.
  • You already know how to use Xcode IDE.
  • You aren’t a newbie to the Swift Programming Language

Download The PickerView Project

I’ve already created an Xcode project you will use throughout this tutorial series, so click this image to download.

download-excodeproj

When you finish unzipping the file, move it to the Interactive Swift Programming folder on your iMac.

Code presented on this page assume you are using Xcode 6.4 and Swift version 1.2. So if you are using a newer version of Swift, it may produce errors. Fix them by using Xcode’s Fix-it tool.

Launch the Swift Picker View project in Xcode. Now, there’s only one scene and class file in the project and the image below shows what they look like in Xcode IDE. The image also shows connection made for the pickerView and the textView.

Figure 1-1

Figure 1-1

When you run the Swift Picker View project in the iPhone 4s Simulator, the storyboard’s View Controller scene will look like this:

swift-pickerview-fig1-2

Figure 1-2

Populate The PickerView Rows

The first thing you have to do is enter code in the ViewController.swift file to populate the pickerView rows with string objects. In oreder to do that enter code shown below in the ViewController.swift file.

override func viewDidLoad() {
  ...
  itemNameList = ["Toy Car", "Wine Glass", "Small TV", "Toy Jeep",
  "Dog", "Office Phone", "Flowers", "Star"]
}

func pickerView(pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String! {
  return itemNameList[row]
}

Code you entered in the viewDidLoad() function populate the pickerView’s data source array with eight string objects. Code you entered in the pickerView’s titleForRow() function populate the pickerView rows with string objects you entered in the pickerView’s data source, which is an array called itemNameList.

Run the app on the iPhone 4s Simulator and you will see this output on the screen:

Figure 1-3

Figure 1-3

Display The Selected Item in The textView

When the user select an item in the pickerView, the app should display it in the textView. To implement this feature in the Swift Picker View project, you’ll have to add code shown below in the pickerView’s didSelectRow() function.

func pickerView(pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
  selectedItemName = itemNameList[row] self.textView.text = "Item selected, " + selectedItemName
}

Here’s output you’ll see on the sim’s screen when you select an item from the pickerView.

Figure 1-4

Figure 1-4

Preselect a Row in The PickerView

Wouldn’t be nice to preselect a row in the pickerView control and display its data in the textView control. Here’s code to implement that feature in the Picker View project and results the code will produce on the iPhone Simulator’s screen.

swift-pickerview-fig1-5

swift-hr

That’s pretty much all for today. Next week, I bring you the second part of the Swift Picker View tutorial. In the mean time comments are welcomed!

Tags:

No responses yet

Leave a Reply

UIDocument Demystified: A Step-by-step Guide on Local and iCloud Document Storage

 

Archives