Saturday, September 28, 2024
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 making a 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 verify 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 undertaking, verify picture proven under. Be aware that path of listing shall 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 under instructions to initialize pod for the undertaking 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 undertaking. Open undertaking 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 different of string array holding values we’re going to present as dropdown choices.
In our principal.storyboard we already designed person interface as proven under(as we’re not overlaying the design half on this weblog submit)

User interface for this tutorial

Configuring dropdown with datasource and its anchor factors

In our viewcontroller’s viewDidLoad operate, we’ll configuring datasource for dropdown choices. Additionally we’ll set anchor level for dropdown, and write dropdown’s callback technique that provides us the choice seleccted by person. Under 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.path = .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 shall 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 path for opening of dropdown. Lastly, we write down the callback for our dropdown choice.

Current dropdown to person’s

To be able to present dropdown we’ll create an, IBAction for our button and name under line of code.

The place to go from right here

On this submit, we discovered find out how to create a dropdown in iOS app improvement utilizing swift language. For creating dropdown, we used assistolab pod. I hope this submit, helped you in studying find out how 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