UIscrollview的滑动 视图会出现和消失

来源:互联网 发布:php统计页面浏览量 编辑:程序博客网 时间:2024/06/04 19:55
//滚动
-(
void)scrollViewDidScroll:(UIScrollView*)scrollView{
   
if (scrollView.contentOffset.y>10) {
       
        [
UIViewanimateWithDuration:0.4animations:^{
           
self.DownView.frame= CGRectMake(0,self.view.bounds.size.height,self.view.bounds.size.width,50);
        }];
    }
else{
    [
UIViewanimateWithDuration:0.4animations:^{
       
self.DownView.frame= CGRectMake(0,self.view.bounds.size.height-50,self.view.bounds.size.width,50);
       
    }];
   
    }

}
0 0