-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFLTextFieldAutoComplete.podspec
More file actions
22 lines (18 loc) · 1.04 KB
/
FLTextFieldAutoComplete.podspec
File metadata and controls
22 lines (18 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'FLTextFieldAutoComplete'
s.version = '0.1.0'
s.summary = 'FLTextFieldAutoComplete extends UITextField allowing you to add the autocomplete feature in a really easy way.'
s.description = <<-DESC
Even though creating the autocomplete feature over a UITextField is not a big issue, dealing with screen rotation, keyboard position, the look and feel, etc, makes this task harder than expected.
The idea behind FLTextFieldAutoComplete is to help you adding this feature in just a few lines of code.
DESC
s.homepage = 'https://github.com/felarmir/FLTextFieldAutoComplete'
s.license = {type: 'MIT', file: 'LICENSE'}
s.author = { "Denis Andreev" => "felarmir@gmail.com" }
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/felarmir/FLTextFieldAutoComplete.git", :tag => "#{s.version}" }
s.source_files = "Classes", "Classes/*.{h,m}"
s.public_header_files = "Classes/*.h"
s.framework = "Foundation"
s.requires_arc = true
end