Skip to content

Commit

Permalink
reveal delegate in tab view controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroki Akiyama committed Jun 1, 2014
1 parent dba2461 commit 66faa77
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion AXStretchableHeaderTabViewController.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "AXStretchableHeaderTabViewController"
s.version = "0.1.5"
s.version = "0.1.6"
s.summary = "Stretchable header view + Horizontal swipable tab view."
s.description = <<-DESC
Stretchable header view + Horizontal swipable tab view
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# AXStretchableHeaderTabViewController CHANGELOG

## 0.1.6

Feature: Reveal delegate in tab view controller.

## 0.1.5

Feature: add bottom separator.
Expand Down
7 changes: 1 addition & 6 deletions Classes/AXStretchableHeaderTabViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,12 @@
// AXStretchableHeaderTabViewController.h
// Pods
//
// Created by Hiroki Akiyama on 2014/05/25.
//
//

#import <UIKit/UIKit.h>
#import "AXStretchableHeaderView.h"
#import "AXTabBar.h"

@interface AXStretchableHeaderTabViewController : UIViewController
//@property (weak, nonatomic) id<UITabBarControllerDelegate> delegate;

@interface AXStretchableHeaderTabViewController : UIViewController <UIScrollViewDelegate, AXTabBarDelegate>
@property (nonatomic) NSUInteger selectedIndex;
@property (readwrite, nonatomic) UIViewController *selectedViewController;
@property (copy, nonatomic) NSArray *viewControllers;
Expand Down
5 changes: 1 addition & 4 deletions Classes/AXStretchableHeaderTabViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@
// AXStretchableHeaderTabViewController.m
// Pods
//
// Created by Hiroki Akiyama on 2014/05/25.
//
//

#import "AXStretchableHeaderTabViewController.h"

@interface AXStretchableHeaderTabViewController () <UIScrollViewDelegate, AXTabBarDelegate>
@interface AXStretchableHeaderTabViewController ()

@end

Expand Down

0 comments on commit 66faa77

Please sign in to comment.