废话少说,直接上代码:

-(void) showOrHiddenMenuAndButtomView{
    
    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:0.25];
    //        [UIView setAnimationDelay:0.5];
    [UIView setAnimationDelegate:self];
//    [UIView setAnimationDidStopSelector:@selector(showMenuStop)];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
    
    if (ismenuViewShow) {
        ismenuViewShow = NO;
//        menuView.hidden = YES;
//        butttomView.hidden = YES;
        menuView.frame = CGRectMake(0, -60, 1024, 60);
        butttomView.frame = CGRectMake(0, 748, 1024, 40);
    } else {
        ismenuViewShow = YES;
//        menuView.hidden = NO;
//        butttomView.hidden = NO;
        menuView.frame = CGRectMake(0, 0, 1024, 60);
        butttomView.frame = CGRectMake(0, 708, 1024, 40);
    }
    
    [UIView commitAnimations];
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-30
  • 2022-12-23
  • 2022-12-23
  • 2021-04-05
  • 2021-09-22
猜你喜欢
  • 2021-11-17
  • 2022-02-18
  • 2021-10-27
  • 2021-10-27
相关资源
相似解决方案