forked from taruntyagi697/ClearTextLabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClearTextLabel.podspec
32 lines (18 loc) · 1.01 KB
/
ClearTextLabel.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 = "ClearTextLabel"
s.version = "1.0.1"
s.summary = "UILabel subclass that renders see through text using CoreText. textColor is clearColor."
s.description = "ClearTextLabel is a UILabel subclass that creates a label with see-through text.
ClearTextLabel draws the text provided to it with transparency.
* It uses CoreGraphics Context to draw the letters' CGPath.
* Letters' CGPath, how ? Well what's CoreText there for ?"
s.homepage = "https://github.com/taruntyagi697/ClearTextLabel"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.platform = :ios
s.ios.deployment_target = "6.0"
s.source = { :git => "https://github.com/taruntyagi697/ClearTextLabel.git", :tag => "v1.0.1" }
s.source_files = "ClearTextLabel"
s.frameworks = "CoreFoundation", "CoreText", "QuartzCore"
s.requires_arc = true
end