|
| 1 | + |
| 2 | + |
| 3 | +[](https://twitter.com/kevinh6113) |
| 4 | +[](https://github.com/kevin-hirsch/KVNProgress/blob/master/README.md) |
| 5 | +[](https://github.com/kevin-hirsch/DropDown) |
| 6 | +[](http://cocoadocs.org/docsets/DropDown/) |
| 7 | + |
| 8 | +A drop down for iOS in Swift (1.2). |
| 9 | +*** |
| 10 | + |
| 11 | +[](Screenshots/1.png) |
| 12 | +[](Screenshots/2.png) |
| 13 | + |
| 14 | +## Installation |
| 15 | + |
| 16 | +### Cocoapods |
| 17 | + |
| 18 | +Use [CocoaPods](http://www.cocoapods.org). |
| 19 | + |
| 20 | +1. Add `pod 'DropDown'` to your *Podfile*. |
| 21 | +2. Install the pod(s) by running `pod install`. |
| 22 | + |
| 23 | +### Source files |
| 24 | + |
| 25 | +1. Download the [latest code version](http://github.com/kevin-hirsch/DropDown/archive/master.zip) or add the repository as a git submodule to your git-tracked project. |
| 26 | +2. Drag and drop the **src**, **helpers** and also the **resources** 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. |
| 27 | + |
| 28 | +## Usage |
| 29 | + |
| 30 | +Create a new drop down: |
| 31 | + |
| 32 | +```swift |
| 33 | +let dropDown = DropDown() |
| 34 | +``` |
| 35 | + |
| 36 | +Set the view to which the drop down will anchor: |
| 37 | + |
| 38 | +```swift |
| 39 | +let view = UIView() |
| 40 | +dropDown.anchorView = view |
| 41 | +``` |
| 42 | + |
| 43 | +By default, the dropdown will be shown from the point (0, 0). If you want the dropdown to be just below your anchor view, you can precise an offset like this: |
| 44 | + |
| 45 | +```swift |
| 46 | +dropDown.offset = CGPoint(x: 0, y:view.bounds.height) |
| 47 | +``` |
| 48 | + |
| 49 | +The default width of the drop down will be the same as the anchor view minus the offset. If you want a custom width, just set: |
| 50 | + |
| 51 | +```swift |
| 52 | +dropDown.width = 100 |
| 53 | +``` |
| 54 | + |
| 55 | +Set the data source: |
| 56 | + |
| 57 | +```swift |
| 58 | +dropDown.dataSource = ["Car", "Motorcycle", "Van"] |
| 59 | +``` |
| 60 | + |
| 61 | +When the user select something, your `selectionAction` is called: |
| 62 | + |
| 63 | +```swift |
| 64 | +dropDown.selectionAction = { [unowned self] (index, string) in |
| 65 | + println("item \(string) at index \(index) selected.") |
| 66 | +} |
| 67 | +``` |
| 68 | + |
| 69 | +And if the user cancels the drop down, your `cancelAction` gets called: |
| 70 | + |
| 71 | +```swift |
| 72 | +dropDown.cancelAction = { [unowned self] in |
| 73 | + println("Drop down canceled") |
| 74 | +} |
| 75 | +``` |
| 76 | + |
| 77 | +You have 3 dismiss mode with the `DismissMode` enum: |
| 78 | + |
| 79 | +- `OnTap`: a tap is needed to dismiss the drop down before being able to interact with the UI |
| 80 | +- `Automatic`: no tap is needed to dismiss the drop down, as soon as the user interact with anything else than the drop down, the drop down is dismissed |
| 81 | +- `Manual`: the drop down can only be dismissed manually (by code) |
| 82 | + |
| 83 | +for example: |
| 84 | + |
| 85 | +```swift |
| 86 | +dropDown.dismissMode = .Automatic |
| 87 | +``` |
| 88 | + |
| 89 | +You can (pre)select a row with: |
| 90 | + |
| 91 | +```swift |
| 92 | +dropDown.selectRowAtIndex(3) |
| 93 | +``` |
| 94 | + |
| 95 | +And finally show and hide the drop down with: |
| 96 | + |
| 97 | +```swift |
| 98 | +dropDown.show() |
| 99 | +dropDown.hide() |
| 100 | +``` |
| 101 | + |
| 102 | +The data source is reloaded automatically when changing the `dataSource` property. If needed, you can reload the data source manually by doing: |
| 103 | + |
| 104 | +```swift |
| 105 | +dropDown.reloadAllComponents() |
| 106 | +``` |
| 107 | + |
| 108 | +You can get info about the selected item this way: |
| 109 | + |
| 110 | +```swift |
| 111 | +dropDown.selectedItem() // returns a String? |
| 112 | +dropDown.indexForSelectedRow() // returns a Index? |
| 113 | +``` |
| 114 | + |
| 115 | +### Advanced usage |
| 116 | + |
| 117 | +when calling the `show` method, it returns a tuple like this: |
| 118 | + |
| 119 | +```swift |
| 120 | +(canBeDisplayed: Bool, offscreenHeight: CGFloat?) |
| 121 | +``` |
| 122 | + |
| 123 | +- `canBeDisplayed` tells if there is enough height to display the drop down. If its value is `false`, the drop down is not showed. |
| 124 | +- `offscreenHeight`: if the drop down was not able to show all options from the data source at once, `offscreenHeight` will contain the height needed to display all options at once (without having to scroll through them). This can be used in a scroll view or table view to scroll enough before showing the drop down. |
| 125 | + |
| 126 | +## Remains to do |
| 127 | + |
| 128 | +- [ ] Handle landscape mode on iOS 7 |
| 129 | + |
| 130 | +## Requirements |
| 131 | + |
| 132 | +* Xcode 6+ |
| 133 | +* iOS 7+ |
| 134 | +* ARC |
| 135 | + |
| 136 | +## License |
| 137 | + |
| 138 | +This project is under MIT license. For more information, see `LICENSE` file. |
| 139 | + |
| 140 | +## Credits |
| 141 | + |
| 142 | +DropDown was inspired by the Material Design version of the [Spinner](http://developer.android.com/guide/topics/ui/controls/spinner.html). |
| 143 | + |
| 144 | +DropDown was done to integrate in a project I work on: |
| 145 | +[](https://assis.to). |
| 146 | +It will be updated when necessary and fixes will be done as soon as discovered to keep it up to date. |
| 147 | + |
| 148 | +I work at |
| 149 | +[(http://pinchproject.com). |
| 150 | + |
| 151 | +You can find me on Twitter [@kevinh6113](https://twitter.com/kevinh6113). |
| 152 | + |
| 153 | +Enjoy! :) |
0 commit comments