首页 > 移动平台 > 详细

iOS 检测状态栏点击事件

时间:2016-08-20 00:06:42      阅读:409      评论:0      收藏:0      [点我收藏+]

 

 

当tableView.scrollsToTop=YES不管用时,可以使用以下方法实现点击状态栏使tableView滚动到顶部。

 

- (void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [super touchesBegan:touches withEvent:event];
    CGPoint location = [[[event allTouches] anyObject] locationInView:self.view];
    CGRect statusBarFrame = [UIApplication sharedApplication].statusBarFrame;

    if (CGRectContainsPoint(statusBarFrame, location)) {
        [UIView animateWithDuration:0.3f animations:^{
            self.tableView.contentOffset = CGPointMake(0, self.tableViewOriginalOffset);
            [self.tableView layoutIfNeeded];
        }];
    }
}

 

iOS 检测状态栏点击事件

原文:http://www.cnblogs.com/ficow/p/5789390.html

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