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

How I Reduced the Size of My React Native App by 85%

How and Why You Should Do It I borrowed 25$ from my friend to start a Play Store Developer account to put up my first app. I had already created the app, created the assets and published it in the store. Nobody wants to download a todo list app that costs 25mb of bandwidth and another 25 MB of storage space. So today I am going to share with you how I reduced the size of Tet from 25 MB to around 3.5 MB. Size Matters Like any beginner, I wrote my app using Expo, the awesome React Native platform that makes creating native apps a breeze. There is no native setup, you write javascript and Expo builds the binaries for you. I love everything about Expo except the size of the binaries. Each binary weighs around 25 MB regardless of your app. So the first thing I did was to migrate my existing Expo app to React Native. Migrating to React Native react-native init  a new project with the same name Copy the  source  files over from Expo project Install all de...

How to recover data of your Android KeyStore?

These methods can save you by recovering Key Alias and Key Password and KeyStore Password. This dialog becomes trouble to you? You should always keep the keystore file safe as you will not be able to update your previously uploaded APKs on PlayStore. It always need same keystore file for every version releases. But it’s even worse when you have KeyStore file and you forget any credentials shown in above box. But Good thing is you can recover them with certain tricks [Yes, there are always ways]. So let’s get straight to those ways. 1. Check your log files → For  windows  users, Go to windows file explorer C://Users/your PC name/.AndroidStudio1.4 ( your android studio version )\system\log\idea.log.1 ( or any old log number ) Open your log file in Notepad++ or Any text editor, and search for: android.injected.signing and if you are lucky enough then you will start seeing these. Pandroid.injected.signing.store.file = This is  file path where t...

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 = { ...