-
Notifications
You must be signed in to change notification settings - Fork 141
/
KMPlaceholderTextView.podspec
32 lines (20 loc) · 1.06 KB
/
KMPlaceholderTextView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "KMPlaceholderTextView"
s.version = "1.4.0"
s.summary = "A UITextView subclass that adds support for multiline placeholder written in Swift."
s.description = <<-DESC
A UITextView subclass that adds support for multiline placeholder written in Swift.
It is convenient to set the value of the placeholder property just like using UITextField.
DESC
s.homepage = "https://github.com/MoZhouqi/KMPlaceholderTextView"
s.screenshots = "https://raw.githubusercontent.com/MoZhouqi/KMPlaceholderTextView/master/Screenshots/preview.gif"
s.license = "MIT"
s.author = { "Zhouqi Mo" => "[email protected]" }
s.social_media_url = "https://twitter.com/MoZhouqi"
s.swift_version = "5.0"
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/MoZhouqi/KMPlaceholderTextView.git", :tag => s.version }
s.source_files = "Sources/KMPlaceholderTextView/*.swift"
s.frameworks = "UIKit"
s.requires_arc = true
end