10

我想在我的 iPhone 上向下滚动时隐藏两个栏。当我向上滚动时,它们应该再次出现。我该如何处理?

4

4 回答 4

7
- (void)scrollViewWillBeginScroll :(UIScrollView *)scrollView {
      if (scrollView.contentOffset.y < lastOffset.y) {
                 [toolBar setHidden:YES];
                 [[[self navigationController] navigationBar] setHidden:YES];
      } else{
                 // unhide
      }
}

- (void)scrollViewDidScroll :(UIScrollView *)scrollView {
      /// blah blah
      lastOffset = scrollView.contentOffset;
}

注意:lastOffset是一个CGPoint,它在你的头文件中:@Interface.

于 2012-04-16T20:30:28.563 回答
4

接受的答案对我不起作用,因为scrollViewWillBeginScroll:不是委托方法。

相反,我做

-(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"BarsShouldHide" object:self];

}

-(void)scrollViewDidEndDragging:(UIScrollView *)scrollView 
                 willDecelerate:(BOOL)decelerate
{
    if(!decelerate)
        [[NSNotificationCenter defaultCenter] postNotificationName:@"BarsShouldUnhide" 
                                                            object:self];
}

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"BarsShouldUnhide"
                                                        object:self];
}

应用程序对象中的任何地方都可以监听此通知,例如

- (void)viewDidLoad
{
    [super viewDidLoad];
    [[NSNotificationCenter defaultCenter] addObserverForName:@"BarsShouldHide" 
                                                      object:nil
                                                       queue:nil
                                                  usingBlock:^(NSNotification *note) {
        //hide tab bar with animation;
    }];
    [[NSNotificationCenter defaultCenter] addObserverForName:@"BarsShouldUnhide" 
                                                      object:nil
                                                       queue:nil
                                                  usingBlock:^(NSNotification *note) {
        //Unhide tab bar with animation;
    }];
}

此代码将隐藏任何滚动条。如果您只想关闭,则与locationOffset已接受答案中的技巧相同。

于 2014-03-10T16:10:21.933 回答
0

这是我在 Swift 中的解决方案;它工作得很好

func scrollViewDidScroll(scrollView: UIScrollView) {
    let navController: UINavigationController = self.navigationController!
    if self.collectionView.panGestureRecognizer.translationInView(self.view).y <= 0.0 {
        defaultCenter.postNotificationName("stuffShouldHide", object: self)
    } else {
        defaultCenter.postNotificationName("stuffShouldUnhide", object: self)
    }
}
于 2015-08-08T07:46:17.597 回答
0

你可能会检查这个,可从 iOS8 获得,我认为这与你正在寻找的相反......但值得检查,因为它是标准的,这就是 Safari 的工作方式。

迅速

var hidesBarsOnSwipe: 布尔

Objective-C

@property(nonatomic, readwrite, assign) BOOL hidesBarsOnSwipe 讨论

当此属性设置为 YES 时,向上滑动会隐藏导航栏和工具栏。向下滑动再次显示两个条形。如果工具栏没有任何项目,即使在滑动之后它仍然可见。此属性的默认值为 NO。

于 2015-12-08T10:00:27.663 回答