-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPTPPlaceholderTextView.podspec
More file actions
22 lines (17 loc) · 1.01 KB
/
PTPPlaceholderTextView.podspec
File metadata and controls
22 lines (17 loc) · 1.01 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 = "PTPPlaceholderTextView"
s.version = "0.7.3"
s.summary = "A simple naive implementation of UITextView subclass to support placeholder text rendering in UITextView."
s.description = <<-DESC
A simple naive implementation of UITextView subclass to support placeholder text rendering in UITextView.
This PTPPlaceholderTextView comes with IBDesignable, IBInspectable and also UIAppearance support.
DESC
s.homepage = "https://github.com/pitiphong-p/PTPPlaceholderTextView"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Pitiphong Phongpattranont" => "pitiphong.p@me.com" }
s.social_media_url = "http://twitter.com/pitiphong_p"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/pitiphong-p/PTPPlaceholderTextView.git", :tag => s.version }
s.source_files = "PTPPlaceholderTextView.swift"
s.xcconfig = { 'SWIFT_VERSION' => '5.0' }
end