Skip to content

Commit 9bedacd

Browse files
committed
Add to Cocoapods
1 parent 8b00e6b commit 9bedacd

File tree

6 files changed

+203
-0
lines changed

6 files changed

+203
-0
lines changed

DropDown.podspec

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Pod::Spec.new do |s|
2+
3+
s.name = "DropDown"
4+
s.version = "0.1"
5+
s.summary = "Android like drop down"
6+
7+
s.description = <<-DESC
8+
This drop down is to overcome the loss of usability and user experience due to the UIPickerView. Android did a good job there so this drop down is very inspired by it. It appears at the right location instead of the bottom of the screen as default with UIPickerView and if possible, all options are displayed at once.
9+
DESC
10+
11+
s.homepage = "https://github.com/kevin-hirsch/DropDown"
12+
s.screenshots = "https://github.com/kevin-hirsch/DropDown/tree/master/Screenshots/1.png", "https://github.com/kevin-hirsch/DropDown/tree/master/Screenshots/2.png"
13+
14+
s.license = { :type => "MIT", :file => "LICENSE" }
15+
16+
s.author = { "kevin-hirsch" => "kevin.hirsch.be@gmail.com" }
17+
s.social_media_url = "http://twitter.com/kevinh6113"
18+
19+
s.platform = :ios, '7.0'
20+
s.source = {
21+
:git => "https://github.com/kevin-hirsch/DropDown.git",
22+
:tag => s.version.to_s
23+
}
24+
25+
s.source_files = "DropDown/src", "DropDown/src/**/*.{h,m}", "DropDown/helpers", "DropDown/helpers/**/*.{h,m}"
26+
s.resources = "DropDown/resources/*.{png,xib}"
27+
s.requires_arc = true
28+
29+
end

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014 kevin-hirsch
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
![DropDown](Screenshots/logo.png)
2+
3+
[![Twitter: @kevinh6113](http://img.shields.io/badge/contact-%40kevinh6113-70a1fb.svg?style=flat)](https://twitter.com/kevinh6113)
4+
[![License: MIT](http://img.shields.io/badge/license-MIT-70a1fb.svg?style=flat)](https://github.com/kevin-hirsch/KVNProgress/blob/master/README.md)
5+
[![Version](http://img.shields.io/badge/version-0.1-green.svg?style=flat)](https://github.com/kevin-hirsch/DropDown)
6+
[![Cocoapods](http://img.shields.io/badge/Cocoapods-available-green.svg?style=flat)](http://cocoadocs.org/docsets/DropDown/)
7+
8+
A drop down for iOS in Swift (1.2).
9+
***
10+
11+
[![](Screenshots/1.png)](Screenshots/1.png)
12+
[![](Screenshots/2.png)](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+
[![Assisto](https://assis.to/images/logouser_dark.png)](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+
[![Pinch](http://pinchproject.com/img/pinch-logo.png)(http://pinchproject.com).
150+
151+
You can find me on Twitter [@kevinh6113](https://twitter.com/kevinh6113).
152+
153+
Enjoy! :)

Screenshots/1.png

22.5 KB
Loading

Screenshots/2.png

37.3 KB
Loading

Screenshots/logo.png

3.89 KB
Loading

0 commit comments

Comments
 (0)