-
Notifications
You must be signed in to change notification settings - Fork 66
/
BFNavigationBarDrawer.podspec
28 lines (25 loc) · 1.21 KB
/
BFNavigationBarDrawer.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
Pod::Spec.new do |s|
s.name = 'BFNavigationBarDrawer'
s.version = '1.0.2'
s.platform = :ios
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.homepage = 'https://github.com/DrummerB/BFNavigationBarDrawer'
s.authors = { 'Balazs Faludi' => '[email protected]' }
s.screenshot = 'http://i.imgur.com/3gmX3VG.png'
s.summary = 'A UIToolbar subclass that can easily be displayed below a UINavigationBar, similarly to the playlist view in the Music app.'
s.description = <<-DESC
BFNavigationBarDrawer is a UIToolbar subclass that
can easily be displayed below a UINavigationBar,
similarly to the playlist view in the Music app.
You can also assign a scroll view (or table view)
to the drawer. The drawer will take care of moving
the scroll view's content down and updating its
contentInset property, when the drawer is displayed.
DESC
s.source = {
:git => "https://github.com/DrummerB/BFNavigationBarDrawer.git",
:tag => s.version.to_s
}
s.source_files = 'BFNavigationBarDrawer/*.{h,m}'
s.requires_arc = true
end