forked from zekunyan/TTGTagCollectionView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTTGTagCollectionView.podspec
More file actions
21 lines (17 loc) · 1.21 KB
/
TTGTagCollectionView.podspec
File metadata and controls
21 lines (17 loc) · 1.21 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 = "TTGTagCollectionView"
s.version = "1.11.1"
s.summary = "Show simple text tags or custom tag views in a vertical or horizontal scrollable view."
s.description = <<-DESC
TTGTagCollectionView is useful for showing different size tag views in a vertical or horizontal scrollable view and support Autolayout intrinsicContentSize at the same time. And if you only want to show text tags, you can use TTGTextTagCollectionView instead, which has more simple api. At the same time, It is highly customizable that many features of the text tag can be configured, like the tag font size and the background color.
DESC
s.homepage = "https://github.com/zekunyan/TTGTagCollectionView"
s.license = 'MIT'
s.author = { "zekunyan" => "zekunyan@163.com" }
s.source = { :git => "https://github.com/zekunyan/TTGTagCollectionView.git", :tag => s.version.to_s }
s.social_media_url = 'http://tutuge.me'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'TTGTagCollectionView/Classes/**/*'
s.public_header_files = 'TTGTagCollectionView/Classes/**/*.h'
end