Skip to content

Commit

Permalink
Update to 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroki Akiyama committed Jun 6, 2014
1 parent 66faa77 commit c15ed76
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
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.6"
s.version = "0.1.7"
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.7

Feature: Support "self" in interactive header view.

## 0.1.6

Feature: Reveal delegate in tab view controller.
Expand Down
3 changes: 3 additions & 0 deletions Classes/AXStretchableHeaderView.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
}

NSArray *interactiveSubviews = [self.delegate interactiveSubviewsInStretchableHeaderView:self];
if ([interactiveSubviews containsObject:self]) {
return targetView;
}

// Recursive search interactive view in children.
__block BOOL isFound = NO;
Expand Down

0 comments on commit c15ed76

Please sign in to comment.