-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMTMultipleViewController.podspec
More file actions
18 lines (18 loc) · 1.19 KB
/
MTMultipleViewController.podspec
File metadata and controls
18 lines (18 loc) · 1.19 KB
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 = "MTMultipleViewController"
s.version = "1.0.2"
s.summary = "A container view controller that allows the selection of child views based on a UISegmentedControl in the navigation bar."
s.description = <<-DESC
A container view controller that allows the selection of child views based on a UISegmentedControl in the navigation bar.
The navigation bar inherits left,right and back button items from the currently selected child UIViewController, and
titles for the segmented control are taken from the child view controllers' UINavigationItem title properties. The
upshot of all of this is that your child view controllers don't require any modification to be used with this container.
DESC
s.homepage = "https://github.com/mtrudel/MTMultipleViewController"
s.license = 'MIT'
s.author = { "Mat Trudel" => "mat@geeky.net" }
s.source = { :git => "https://github.com/mtrudel/MTMultipleViewController.git", :tag => "1.0.2" }
s.platform = :ios, '5.0'
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
s.requires_arc = true
end