按钮下面滑块移动

    [UIView animateWithDuration:0.5 animations:^{

        CGAffineTransform moveTrans2=CGAffineTransformMakeTranslation(160, 0);//相对于初始位置移动的位置,原位置(0,0)

        [_underbuttonimageview.layer setAffineTransform:moveTrans2];

        [UIView setAnimationCurve:UIViewAnimationCurveEaseIn];

//        [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];//页面上翻动画

        [UIView commitAnimations];//开始动画

    }];

posted @ 2015-08-28 09:48  OIMMZC  阅读(263)  评论(0编辑  收藏  举报