首页 > 移动平台 > 详细

iOS开发 获取状态栏的点击事件

时间:2016-12-27 16:03:35      阅读:247      评论:0      收藏:0      [点我收藏+]

首先我们追踪UIStatusBar的触摸事件,需要在AppDelegate里面加入以下代码

技术分享
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [super touchesBegan:touches withEvent:event];
    CGPoint location = [[[event allTouches] anyObject] locationInView:self.window];
    CGRect statusBarFrame = [UIApplication sharedApplication].statusBarFrame;
    if (CGRectContainsPoint(statusBarFrame, location)) {
        [self statusBarTouchedAction];
    }
}
技术分享

然后在statusBarTouchedAction方法中将显示在当前keyWindow里面的scrollView滚动到顶部

- (void)statusBarTouchedAction {

      [[DDTopWindow defaultDDTopWindow] scrollsToTop];

}

下面来看JMSUIScrollViewTool

技术分享

@interface DDTopWindow : UIView

 

+ (instancetype)defaultDDTopWindow;

 

- (void)configScrollView:(UIScrollView *)scrollView isCanTop:(BOOL)isCanTop;

 

- (void)scrollsToTop;

 

@end

 

技术分享
技术分享

#import "DDTopWindow.h"

 

static UIScrollView *scrollView_;

 

@interface DDTopWindow ()

 

@property (nonatomic, assign) BOOL isCan;

 

@end

 

@implementation DDTopWindow

 

SYNTHESIZE_SINGLETON_FOR_CLASS_ARC(DDTopWindow);

 

- (void)configScrollView:(UIScrollView *)scrollView isCanTop:(BOOL)isCanTop {

  scrollView_ = scrollView;

  self.isCan = isCanTop;

}

 

- (void)scrollsToTop {

  if (scrollView_.scrollEnabled) {

    [scrollView_ setContentOffset:CGPointMake(scrollView_.contentOffset.x, -scrollView_.contentInset.top) animated:YES];

  }

}

 

@end

 

技术分享

iOS开发 获取状态栏的点击事件

原文:http://www.cnblogs.com/diweinan/p/6226206.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!