动画CGAffineTransformTranslate

来源:互联网 发布:lua 清除table数据 编辑:程序博客网 时间:2024/06/04 20:01

动画CGAffineTransformTranslate

__weak typeof(self) weakSelf = self;[UIView animateWithDuration:0.5 animations:^{    weakSelf.bottomView.transform = CGAffineTransformTranslate(self.bottomView.transform, 0, -250);} completion:^(BOOL finished) {}];- (void)hideBottomView{[UIView animateWithDuration:0.5 animations:^{    self.bottomView.transform = CGAffineTransformTranslate(self.bottomView.transform, 0, 250);} completion:^(BOOL finished) {    [self.bottomView removeFromSuperview];}];}
阅读全文
0 0