-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPPCopiableLabel.podspec
More file actions
21 lines (18 loc) · 1.06 KB
/
PPCopiableLabel.podspec
File metadata and controls
21 lines (18 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "PPCopiableLabel"
s.version = "1.0.1"
s.summary = "A simple subclass of UILabel that allows users to copy text with a long press. Handles highlighting the label as needed."
s.description = <<-DESC
PPCopiableLabel can be used as a drop-in replacement for UILabel. You can simply change the custom class of any UILabel
in Interface Builder, and that label will have the ability to display the Copy menu when pressed for a second.
DESC
s.homepage = "https://github.com/markiv/PPCopiableLabel"
s.screenshots = "https://raw.githubusercontent.com/markiv/PPCopiableLabel/master/demo.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vikram Kriplaney" => "vikram@iphonso.com" }
s.social_media_url = "http://twitter.com/krips"
s.platform = :ios, "3.0"
s.source = { :git => "https://github.com/markiv/PPCopiableLabel.git", :tag => "1.0.1" }
s.source_files = "Classes/*.{h,m}"
s.requires_arc = true
end