-
Notifications
You must be signed in to change notification settings - Fork 222
/
ZCAnimatedLabel.podspec
30 lines (25 loc) · 1017 Bytes
/
ZCAnimatedLabel.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
Pod::Spec.new do |s|
s.name = "ZCAnimatedLabel"
s.version = "0.0.4"
s.summary = "UILabel-like view with easy to extend appear/disappear animation"
s.description = <<-DESC
# Features
* Rich text support (with NSAttributedString)
* Group aniamtion by character/word/line
* Customizable animation start delay for each text block
* Great performance, only changed area is redrawn
* Optional layer-based implementation
* 3D/Geometry transform support (layer based only)
* iOS 5+ compatibility
DESC
s.homepage = "http://github.com/overboming/ZCAnimatedLabel"
s.license = "MIT"
s.author = { "Chen Zhang" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = "5.0"
s.source = { :git => "https://github.com/overboming/ZCAnimatedLabel.git", :tag => "0.0.4" }
s.source_files = "ZCAnimatedLabel/ZCAnimatedLabel/*.{h,m}"
s.exclude_files = "Classes/Exclude"
s.frameworks = "CoreText"
s.requires_arc = true
end