ZTDropDownTextField 0.1.5

ZTDropDownTextField 0.1.5

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Aug 2015
SPMSupports SPM

Maintained by Ziyang Tan.



  • By
  • Ziyang Tan

Table of contents


Features

  • [x] Provide dropdown suggestions below UITextField
  • [x] Alterantive of UISearchController
  • [x] Dropdown list will hide automatially, when user tap outside of it
  • [x] Implemented with AutoLayout, support both portrait and landscape
  • [x] Provide delegate methods for dropdown list events
  • [x] Dropdown list UI is customizable
  • [x] Swift Dynamic Framework, easy to integrate

Demo

Portrait Landscape
Portrait Slide Animation
Slide Animation Expand Animation Flip Animation
Slide Animation Slide Animation Flip Animation

Installation

Source files

  1. Download the latest code version or add the repository as a git submodule to your git-tracked project.
  2. Drag and drop ZTDropDownTextField directory from the archive in your project navigator. Make sure to select Copy items when asked if you extracted the code archive outside of your project.
  3. Include ZTDropDownTextField wherever you need it with import ZTDropDownTextField.

Example

  1. Download the latest code version
  2. Double click to open the ZTDropDownTextField.xcworkspace file

Usage

Check out the provided example app for how you can use the ZTDropDownTextField.

Basics

Add the following import to the top of your Swift file which needs a dropdown textfield.

   import ZTDropDownTextField

IBOutlet

You can declare a ZTDropDownTextField with an IBOutlet and connect it to your storyboard or nib file.

  @IBOutlet weak var dropDownTextField: ZTDropDownTextField!

DataSourceDelegate

There are 3 delegate methods which you have to implement, if your view controller conform with ZTDropDownTextFieldDataSourceDelegate.

You can let your view controller become a ZTDropDownTextFieldDataSourceDelegate by doing the following:

  dropDownTextField.dataSourceDelegate = self

Example of implementing ZTDropDownTextFieldDataSourceDelegate method

extension ViewController: ZTDropDownTextFieldDataSourceDelegate {
    func dropDownTextField(dropDownTextField: ZTDropDownTextField, numberOfRowsInSection section: Int) -> Int {
        return myList.count
    }

    func dropDownTextField(dropDownTextField: ZTDropDownTextField, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        var cell = dropDownTextField.dropDownTableView.dequeueReusableCellWithIdentifier("Cell") as? UITableViewCell
        if cell == nil {
            cell = UITableViewCell(style: .Default, reuseIdentifier: "Cell")
        }

        cell!.textLabel!.text = myList[indexPath.row]

        return cell!
    }

    func dropDownTextField(dropdownTextField: ZTDropDownTextField, didSelectRowAtIndexPath indexPath: NSIndexPath) {
       println("drop down list row did select")
    }
}

Customization

The dropdown list can have 3 different animations, including Basic, Slide, Expand and Flip. See the animations in Demo.

public enum ZTDropDownAnimationStyle {
    case Basic
    case Slide
    case Expand
    case Flip
}
  dropDownTextField.animationStyle = .Slide

The rowHeight and dropDownTableViewHeight can be customized by changing the value of these 2 variables

  public var rowHeight:CGFloat = 50
  public var dropDownTableViewHeight: CGFloat = 150

Requirements

  • Xcode 6
  • iOS 7
  • ARC
  • Frameworks:
    • UIKit

Remains to do

  • [ ] Swift 2.0
  • [ ] More customizations

Credit

License

The MIT License (MIT)

Copyright (c) 2015 Ziyang Tan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.