Posts

Showing posts from 2016
Image
Hello Guys! Make Dropdown list in Swift2.1 If you want to make drop down list in swift 2.1 then follow this steps. And also i attached some screenshots to you easily understand actually in this blog what i am doing. :: Screen Shots ::  // Choose data to dropdown list : // After choose data to dropdown list the dropdown menu in hide. :: Start Coding :: import UIKit class DropDownViewController: UIViewController, UITableViewDelegate ,UITableViewDataSource{ // This are outlet for UI View in storyboard    @IBOutlet weak var SelectSchool: UIButton!    @IBOutlet weak var SelectSchoolView: UITableView!    // Create static data for display in drop down list    var data : NSArray = []       override func viewDidLoad() {        super.viewDidLoad()  // Set data in array is already created  ...
Hello