Created
April 14, 2014 07:28
-
-
Save koogawa/10624190 to your computer and use it in GitHub Desktop.
Safari風ナビゲーションバーアニメーション
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma mark - UIScrollView delegate | |
- (void)scrollViewDidScroll:(UIScrollView *)scrollView | |
{ | |
if (scrollView.contentOffset.y < 0 || scrollView.contentOffset.y > scrollView.contentSize.height - kYCBScreenHeight) { | |
return; | |
} | |
// スクロールによってヘッダを出したり隠したり | |
if (lastContentOffset_ > scrollView.contentOffset.y) | |
{ | |
// 下にスクロールされた | |
// ヘッダ表示 | |
} | |
else if (lastContentOffset_ < scrollView.contentOffset.y) { | |
// 上にスクロールされた | |
// ヘッダ隠す | |
} | |
lastContentOffset_ = scrollView.contentOffset.y; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment