-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUIView+CustomFonts.podspec
More file actions
24 lines (21 loc) · 929 Bytes
/
Copy pathUIView+CustomFonts.podspec
File metadata and controls
24 lines (21 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "UIView+CustomFonts"
s.version = "1.0.0"
s.summary = "Change font family without changing the size"
s.description = <<-DESC
One line of code to change a custom font for a view, and also it's subviews
Affects these views:
* UILabel
* UIButton
* UITextField
* UITextView
DESC
s.homepage = "https://github.com/samwize/UIView-CustomFonts"
s.license = 'MIT'
s.author = { "Junda" => "junda@just2us.com" }
s.source = { :git => "https://github.com/samwize/UIView-CustomFonts.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/samwize'
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'Classes/*.{h,m}'
end