当我点击一个按钮时,我想将一个视图移动到右边.
我写了一些东西,但它不工作;
我写了一些东西,但它不工作;
UIView* view = [self.view viewWithTag:100]; if (!view) { NSLog(@"nil"); } [UIView animateWithDuration:0.3f animations:^{ [view setTransform:CGAffineTransformMakeTranslation(-100,0)]; } completion:^(BOOL finished){ } ];