Skip to main content

MultipleComponent UIPickerView in Swift 4

MultipleComponent UIPickerView

Multiple component UIPickerView in swift 4 - tutorial with sample code

Multiple component UIPickerView in swift

As the title of this post says, Multiple component UIPickerView in swift. So in this tutorial, we are going to learn, how to create multiple component or multi component UIPickerView in swift. Generally a UIPickerView contains only single component, it is the default behaviour of UIPickerView, but sometimes during app development we required two components or two lists to be displayed inside single UIPicker. In this tutorial we are going to covered the same thing. So let us start

Step 1: Create a new Xcode project by selecting "Single View  App" template and name it "Multicomponent UIPickerView". Note: Please select development language as swift.

Select Singleview app template in xcode 9

Step 2: Open "Main.storyboard" file.

Select Main.storyboard file

Step 3: Drag an UIPickerView object  from object library and an UILabel, so that we can display our output of the picker selection.

Drag and drop UIPickerView and UIlabel on to ViewController from object library

Step 4: Add constraints to UIPickerView and UILabel as shown in the image.

Constraints given to UILabel

Constraints given to UIPickerView

Step 5: Open "ViewController.swift" file and first declare our IBOutlet's to both the controls, dragged in step 3.

//
// ViewController.swift
// Multicomponent UIPickerView
//
// Created by Sanjay Vaghasiya on 11/8/17.
// Copyright © 2017 iostutorialpoints.blogspot.com . All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var picker: UIPickerView!
@IBOutlet weak var lblPickerSelection: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
Step 6: Open "Main.storyboard" and connect both  IBOutlet's with the respective objects.
Connect IBOutlet with the UIPickerView and UILabel

Step 7: In order to populate UIPickerView with our desired values or options we will take two arrays. With these arrays we will populate our UIPickerView.

//
// ViewController.swift
// Multicomponent UIPickerView
//
// Created by Sanjay Vaghasiya on 11/8/17.
// Copyright © 2017 iostutorialpoints.blogspot.com . All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var picker: UIPickerView!
@IBOutlet weak var lblPickerSelection: UILabel!
var countriesArray:[String] = Array()
var stateNumbersArray:[String] = Array()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
countriesArray.append("USA")
countriesArray.append("UK")
countriesArray.append("NZ")
stateNumbersArray.append("10")
stateNumbersArray.append("20")
stateNumbersArray.append("30")
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
Step 8: As we are done with are arrays, its time to write down UIPickerViewDataSource and UIPickerViewDelegate methods.

//
// ViewController.swift
// Multicomponent UIPickerView
//
// Created by Sanjay Vaghasiya on 11/8/17.
// Copyright © 2017 iostutorialpoints.blogspot.com All rights reserved.
//
import UIKit
class ViewController: UIViewController, UIPickerViewDelegate, UIPickerViewDataSource // tells our clas that we are going to implement UIPickerViewDelegate, UIPickerViewDataSource methods {
@IBOutlet weak var picker: UIPickerView!
@IBOutlet weak var lblPickerSelection: UILabel!
var countriesArray:[String] = Array()
var stateNumbersArray:[String] = Array()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
countriesArray.append("USA")
countriesArray.append("UK")
countriesArray.append("NZ")
stateNumbersArray.append("10")
stateNumbersArray.append("20")
stateNumbersArray.append("30")
// assign our class for delegates and datasource methods for the picker
picker.delegate = self
picker.dataSource = self
}

//MARK:- UIPickerViewDataSource methods
func numberOfComponents(in pickerView: UIPickerView) -> Int {
return 2
}

func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
if component == 0 {
return countriesArray.count
}
return stateNumbersArray.count
}

//MARK:- UIPickerViewDelegates methods
func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
if component == 0 {
return countriesArray[row]
}
return stateNumbersArray[row]
}
//MARK:- didReceiveMemoryWarning
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

Step 9: If you run the code, you will see the following output.
If you run the code till now you will see output like this

On changing values, you will notice that label value will not be updated. So let us fix this problem.

Step 10: To detect a picker selection, we need to implement another delegate method named as "didSelectRow". Below is the code 

func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
let countrySelected = countriesArray[pickerView.selectedRow(inComponent: 0)]
let stateNumberSelected = stateNumbersArray[pickerView.selectedRow(inComponent: 1)]
lblPickerSelection.text = "\(countrySelected) has \(stateNumberSelected) number of states."
}
Step 11: Run the code and you will see whenever you change  UIPickerView values, label will get updated.

Complete code: 

//
// ViewController.swift
// Multicomponent UIPickerView
//
// Created by Sanjay Vaghasiya on 11/8/17.
// Copyright © 2017 iostutorialpoints.blogspot.com All rights reserved.
//
import UIKit
class ViewController: UIViewController, UIPickerViewDelegate, UIPickerViewDataSource {
@IBOutlet weak var picker: UIPickerView!
@IBOutlet weak var lblPickerSelection: UILabel!
var countriesArray:[String] = Array()
var stateNumbersArray:[String] = Array()
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
countriesArray.append("USA")
countriesArray.append("UK")
countriesArray.append("NZ")
stateNumbersArray.append("10")
stateNumbersArray.append("20")
stateNumbersArray.append("30")
picker.delegate = self
picker.dataSource = self
}

//MARK:- UIPickerViewDataSource methods
func numberOfComponents(in pickerView: UIPickerView) -> Int {
return 2
}
func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int {
if component == 0 {
return countriesArray.count
}
return stateNumbersArray.count
}
//MARK:- UIPickerViewDelegates methods
func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {
if component == 0 {
return countriesArray[row]
}
return stateNumbersArray[row]
}
func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
let countrySelected = countriesArray[pickerView.selectedRow(inComponent: 0)]
let stateNumberSelected = stateNumbersArray[pickerView.selectedRow(inComponent: 1)]
lblPickerSelection.text = "\(countrySelected) has \(stateNumberSelected) number of states."
}
//MARK:- didReceiveMemoryWarning
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

Where to go from here:

In this tutorial, we learned how to create and use multiple component UIPickerView or multi component picker in swift language (swift3 / swift4).

Download source code from Multicomponent-UIPickerView.zip

If you any questions or doubts then please feel free to post your doubts in the comment section and will try to answer as soon as we can. Thank you

Comments

Popular Posts

React Native - Text Input

In this chapter, we will show you how to work with  TextInput  elements in React Native. The Home component will import and render inputs. App.js import React from 'react' ; import Inputs from './inputs.js' const App = () => { return ( < Inputs /> ) } export default App Inputs We will define the initial state. After defining the initial state, we will create the  handleEmail  and the  handlePassword  functions. These functions are used for updating state. The  login()  function will just alert the current value of the state. We will also add some other properties to text inputs to disable auto capitalisation, remove the bottom border on Android devices and set a placeholder. inputs.js import React , { Component } from 'react' import { View , Text , TouchableOpacity , TextInput , StyleSheet } from 'react-native' class Inputs extends Component { state = { ...

An introduction to Size Classes for Xcode 8

Introduction to Size Classes for Xcode In iOS 8, Apple introduced  size classes , a way to describe any device in any orientation. Size classes rely heavily on auto layout. Until iOS 8, you could escape auto layout. IN iOS8, Apple changed several UIKit classes to depend on size classes. Modal views, popovers, split views, and image assets directly use size classes to determine how to display an image. Identical code to present a popover on an iPad  causes a iPhone to present a modal view. Different Size Classes There are two sizes for size classes:  compact , and  regular . Sometime you’ll hear about any.  Any  is the generic size that works with anything. The default Xcode layout, is  width:any height:any . This layout is for all cases. The Horizontal and vertical dimensions are called  traits , and can be accessed in code from an instance of  UITraitCollection . The  compact  size descr...

What are the Alternatives of device UDID in iOS? - iOS7 / iOS 6 / iOS 5 – Get Device Unique Identifier UDID

Get Device Unique Identifier UDID Following code will help you to get the unique-device-identifier known as UDID. No matter what iOS user is using, you can get the UDID of the current iOS device by following code. - ( NSString *)UDID { NSString *uuidString = nil ; // get os version NSUInteger currentOSVersion = [[[[[UIDevice currentDevice ] systemVersion ] componentsSeparatedByString: @" . " ] objectAtIndex: 0 ] integerValue ]; if (currentOSVersion <= 5 ) { if ([[ NSUserDefaults standardUserDefaults ] valueForKey: @" udid " ]) { uuidString = [[ NSUserDefaults standardDefaults ] valueForKey: @" udid " ]; } else { CFUUIDRef uuidRef = CFUUIDCreate ( kCFAllocatorDefault ); uuidString = ( NSString *) CFBridgingRelease ( CFUUIDCreateString ( NULL ,uuidRef)); CFRelease (uuidRef); [[ NSUserDefaults standardUserDefaults ] setObject: uuidString ForKey: @" udid " ]; [[ NSUserDefaults standardUserDefaults ] synchro...