按钮下面滑块移动
[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];//开始动画
}];