-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathUITabBarController+KTHidden.podspec
More file actions
21 lines (18 loc) · 1.01 KB
/
UITabBarController+KTHidden.podspec
File metadata and controls
21 lines (18 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
Pod::Spec.new do |s|
s.name = 'UITabBarController+KTHidden'
s.version = '0.1.6'
s.summary = 'A UITabBarController category with UITabBar hide and show animations.'
s.description = <<-DESC
Allows one-line changes to the visibility of the controller’s built-in tabbar. The interface is based on UINavigationController's setToolbarHidden:animated: and toolbarHidden methods.
DESC
s.homepage = 'https://github.com/kasimte/UITabBarController-KTHidden'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kasim Te' => 'kasimte@gmail.com' }
s.source = { :git => 'https://github.com/kasimte/UITabBarController-KTHidden.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/kasimte'
s.ios.deployment_target = '8.0'
s.source_files = 'UITabBarController+KTHidden/Classes/**/*.{h,m}'
s.public_header_files = 'UITabBarController+KTHidden/**/*.h'
s.requires_arc = true
end