Thursday, April 24, 2025
HomeiOS DevelopmentCreate a drop down utilizing swift language in iOS – iOSTutorialJunction

Create a drop down utilizing swift language in iOS – iOSTutorialJunction

[ad_1]

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

On this tutorial, we’ll discover ways to create a drop down utilizing swift language in iOS app improvement. For creating dropdown we’ll use a cocoa-pod named “DropDown” by assistolab. Given under is the url for the pod documentation, you’ll be able to test that for higher understanding of the drop-down performance

https://github.com/AssistoLab/DropDown

Putting in Dopdown pod utilizing terminal

Step1: Open terminal, and set your listing the place your mission is saved, test picture proven under. Observe that path of listing will probably be until folder that comprises .xcodeproj file.

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

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

In poddile add pod title as instructed in documentation of the dropdown pod, and eventually in terminal run
pod set up

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

Step 4: In file ViewController.swift, import module DropDown and add under 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 sort and second one is of UILabel sort. Create an occasion of DropDown module put in utilizing pods, and an array holding values we’re going to present as dropdown choices.
In our essential.storyboard we already designed person interface as proven under(as we aren’t masking 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 perform, we’ll configuring datasource for dropdown choices. Additionally we’ll set anchor level fro dropdown, and write dropdown’s callback methodology that gave us the choice chosen by person. Under is the code for dropdown configurations and registering choice callback

    override func viewDidLoad() {
        tremendous.viewDidLoad()
        // Do any further 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.route = .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 title lblTitle as default placeholder string. In subsequent line we inform compiler that, vwDropdown will probably be our anchorview for the dropdown. Subsequent, we assign fruits array as a datasource. We have to inform in regards to the backside offset for our dropdown. Backside offset will inform dropdown that make its y offset as the peak of anchorview. Inform the route for opening of dropdown. Lastly, we write down the callback for our dropdown choice.

Current dropdown to person’s

With a purpose to present dropdown we’ll write, IBAction for our button and name under line of code.

The place to go from right here

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

[ad_2]

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments