Thursday, February 23, 2023
HomeiOS DevelopmentCreate a drop down utilizing swift language in iOS – iOSTutorialJunction

Create a drop down utilizing swift language in iOS – iOSTutorialJunction


iOS tutorial: Create a drop down utilizing swift language in iOS

On this tutorial, we are going to discover ways to create a drop down utilizing swift language in iOS app growth. For making a dropdown, we are going to use a cocoa-pod named “DropDown” by assistolab. Given beneath is the url for the pod documentation. You possibly can test that for higher understanding concerning the performance or options present by assistolab dropdown library.

https://github.com/AssistoLab/DropDown

Putting in Dopdown pod utilizing terminal

Step1: Open terminal, and set path of your listing to the trail of your venture, test picture proven beneath. Be aware that path of listing might be until folder that incorporates .xcodeproj file.

Setting directory path using CD command in terminal to install pod
Setting listing path to put in pods

Step 2: Run beneath instructions to initialize pod for the venture and podfile
pod init
open -e podfile

In poddile add pod identify as instructed in documentation of the dropdown pod, and at last in terminal run
pod set up

Step 3: At this level we had, pod efficiently added to our venture. Open venture by clicking file named ”.xcworkspace”

Step 4: In file ViewController.swift, import module DropDown and add beneath line of codes

@IBOutlet weak var vwDropDown:UIView!
@IBOutlet weak var lblTitle:UILabel!    
let dropDown = DropDown()    
let fruitsArray = ["mango", "apple", "banana", "cherry"]

In above code snippets, we created two IBOutlets one is of UIView kind and second one is of UILabel kind. Create an occasion of DropDown module put in utilizing pods, and different of string array holding values we’re going to present as dropdown choices.
In our primary.storyboard we already designed person interface as proven beneath(as we aren’t protecting the design half on this weblog publish)

User interface for this tutorial

Configuring dropdown with datasource and its anchor factors

In our viewcontroller’s viewDidLoad operate, we are going to configuring datasource for dropdown choices. Additionally we are going to set anchor level for dropdown, and write dropdown’s callback methodology that offers us the choice seleccted by person. Beneath is the code for dropdown configurations and registering choice callback

    override func viewDidLoad() {
        tremendous.viewDidLoad()
        // Do any extra setup after loading the view.
        lblTitle.textual content = "Choose a fruit"
        dropDown.anchorView = vwDropDown
        dropDown.dataSource = fruitsArray
        dropDown.bottomOffset = CGPoint(x: 0, y:(dropDown.anchorView?.plainView.bounds.top)!)
        dropDown.course = .backside
        dropDown.selectionAction = { [unowned self] (index: Int, merchandise: String) in
          print("Chosen merchandise: (merchandise) at index: (index)")
            self.lblTitle.textual content = fruitsArray[index]
        }
    }

In above code, first we set textual content for UILabel identify lblTitle as default placeholder string. In subsequent line, we inform compiler that vwDropdown might be our anchorview for the dropdown. Subsequent, we assign fruits array as a data-source. We have to inform concerning the backside offset for our dropdown. Backside offset will inform dropdown that make its y offset as the peak of anchorview. Subsequent line of code, tells the course for opening of dropdown. Lastly, we write down the callback for our dropdown choice.

Current dropdown to person’s

As a way to present dropdown we are going to create an, IBAction for our button and name beneath line of code.

The place to go from right here

On this publish, we discovered create a dropdown in iOS app growth utilizing swift language. For creating dropdown, we used assistolab pod. I hope this publish, helped you in studying create dropdown in iOS utilizing swift language.

RELATED ARTICLES

Most Popular