|
1 | 1 | Pod::Spec.new do |s| |
2 | 2 |
|
3 | 3 | s.name = "ICViewPager" |
4 | | - s.version = "1.2.1" |
5 | | - s.summary = "A tab view that mimics ActionBarSherlock's FragmentsTabsPager and Google Play app's tab management." |
| 4 | + s.version = "1.3" |
| 5 | + s.summary = "You can create sliding tabs with ViewPager." |
6 | 6 |
|
7 | 7 | s.description = <<-DESC |
8 | | - A tab view that mimics ActionBarSherlock's FragmentsTabsPager and Google Play app's tab management. |
| 8 | + Slide through the contents or select from tabs or slide through tabs and select! |
9 | 9 |
|
10 | | - ## Usage |
| 10 | + ## Installation |
| 11 | + Just copy ViewPagerController.m and ViewPagerController.h files to your project. |
| 12 | + Or you can use CocoaPods (as this is the recommended way). |
| 13 | + `pod 'ICViewPager'` |
11 | 14 |
|
12 | | - Just copy ViewPagerController.m and ViewPagerController.h files to your project. |
13 | | - You can subclass it and implement dataSource and delegate methods in the subclass or just assign it to a view controller as file's owner and provide external dataSource and delegate objects. |
| 15 | + ## Usage |
| 16 | + Subclass ViewPagerController (as it's a `UIViewController` subclass) and implement dataSource and delegate methods in the subclass. |
14 | 17 |
|
15 | | - ## Requirements |
| 18 | + ## Requirements |
| 19 | + ViewPager supports minimum iOS 6 and uses ARC. |
| 20 | + Supports both iPhone and iPad. |
16 | 21 |
|
17 | | - ICViewController supports minimum iOS 6.1 and uses ARC. |
18 | | - Supports both iPhone and iPad |
| 22 | + ## Contact |
| 23 | + [Ilter Cengiz](mailto:me@iltercengiz.info) |
| 24 | + [@monsieurje](https://twitter.com/monsieurje) |
19 | 25 |
|
20 | | - ## Contact |
21 | | - [Ilter Cengiz](mailto:me@iltercengiz.info) |
22 | | - [@monsieurje](https://twitter.com/monsieurje) |
23 | | -
|
24 | | - ## Licence |
25 | | - ICViewPager is MIT licensed. See the LICENSE file for more info. |
| 26 | + ## Licence |
| 27 | + ICViewPager is MIT licensed. See the LICENSE file for more info. |
26 | 28 | DESC |
27 | 29 |
|
28 | 30 | s.homepage = "https://github.com/monsieurje/ICViewPager" |
29 | 31 | s.screenshots = "https://dl.dropboxusercontent.com/u/17948706/Resources/SS.png" |
30 | 32 | s.license = { :type => 'MIT', :file => 'LICENSE' } |
31 | 33 | s.author = { "Ilter Cengiz" => "me@iltercengiz.info" } |
32 | 34 | s.platform = :ios, '6.1' |
33 | | - s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.2.1" } |
34 | | - s.source_files = 'ICViewPager/ICViewPager/*.{h,m}' |
| 35 | + s.source = { :git => "https://github.com/monsieurje/ICViewPager.git", :tag => "1.3" } |
| 36 | + s.source_files = 'ICViewPager/ICViewPager/*.{h,m}' |
35 | 37 | s.requires_arc = true |
36 | 38 |
|
37 | 39 | end |
0 commit comments