29,049
社区成员




[UIView animateWithDuration:0.5
delay:0
options:UIViewAnimationOptionCurveEaseOut
animations:^(){
//移动按钮
btn.frame = CGRectMake(6, 6, 115, 72);
}completion:^(BOOL finished){
// remove ImageView !!
[self.imageView removeFromSuperview];
}];