-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNavigationMenuController.podspec
More file actions
19 lines (17 loc) · 1.02 KB
/
NavigationMenuController.podspec
File metadata and controls
19 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "NavigationMenuController"
s.version = "0.1.0"
s.summary = "A UINavigationController subclass that adds a menu button in navigation bar to navigate through view controllers from a dropdown menu."
s.description = <<-DESC
A menu can be revealed via a button added to the navigation bar.
Any selection from the menu will replace the last view controller on the stack, replacing the current view controller.
DESC
s.homepage = "https://github.com/iltercengiz/NavigationMenuController"
s.license = 'MIT'
s.author = { "Ilter Cengiz" => "iltercengiz@yahoo.com" }
s.source = { :git => "https://github.com/iltercengiz/NavigationMenuController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/iltercengiz'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end