-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDAAttributedLabel.podspec
More file actions
18 lines (17 loc) · 920 Bytes
/
DAAttributedLabel.podspec
File metadata and controls
18 lines (17 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'DAAttributedLabel'
s.version = '1.3.1'
s.summary = 'A custom AttributedLabel using TextKit to replace UILabel.'
s.description = <<-DESC
A custom AttributedLabel using TextKit to replace UILabel.
You can customization truncationToken, lineSpacing and backgroundColor, and also you can add custom view attachments.
DESC
s.homepage = 'https://github.com/darkangel7/DAAttributedLabel'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'darkangel7' => '535596858@qq.com' }
s.source = { :git => 'https://github.com/darkangel7/DAAttributedLabel.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'DAAttributedLabel/Classes/**/*'
s.public_header_files = 'DAAttributedLabel/Classes/**/*.h'
s.frameworks = 'UIKit', 'Foundation'
end