Xcode / iOS:如何隐藏Navigation-和ToolBar向下滚动?

前端之家收集整理的这篇文章主要介绍了Xcode / iOS:如何隐藏Navigation-和ToolBar向下滚动?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在iPhone上隐藏两个滚动条.当我向上滚动时,他们应该再次出现..我该如何处理?

解决方法

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

相反我做

  1. -(void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
  2. {
  3. [[NSNotificationCenter defaultCenter] postNotificationName:@"BaRSShouldHide" object:self];
  4.  
  5. }
  6.  
  7. -(void)scrollViewDidEndDragging:(UIScrollView *)scrollView
  8. willDecelerate:(BOOL)decelerate
  9. {
  10. if(!decelerate)
  11. [[NSNotificationCenter defaultCenter] postNotificationName:@"BaRSShouldUnhide"
  12. object:self];
  13. }
  14.  
  15. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
  16. {
  17. [[NSNotificationCenter defaultCenter] postNotificationName:@"BaRSShouldUnhide"
  18. object:self];
  19. }

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

  1. - (void)viewDidLoad
  2. {
  3. [super viewDidLoad];
  4. [[NSNotificationCenter defaultCenter] addObserverForName:@"BaRSShouldHide"
  5. object:nil
  6. queue:nil
  7. usingBlock:^(NSNotification *note) {
  8. //hide tab bar with animation;
  9. }];
  10. [[NSNotificationCenter defaultCenter] addObserverForName:@"BaRSShouldUnhide"
  11. object:nil
  12. queue:nil
  13. usingBlock:^(NSNotification *note) {
  14. //Unhide tab bar with animation;
  15. }];
  16. }

代码将隐藏任何滚动条.如果你想只有下来,同一个位置处理技巧在接受的答案应该工作.

猜你在找的iOS相关文章