我在标签和文本字段的动画方面遇到问题。标签只是消失,文本字段不做任何事情。我不知道为什么,但是按钮我没有问题。想想错过了什么真的很愚蠢。好吧,这是 ai 为标签所做的尝试:
UILabel *label = (UILabel*)[self.view viewWithTag:1];
[UIView animateWithDuration:1 animations:^{label.frame = CGRectMake(0,0,1,1);}];
对于文本字段:
UITextField *box = (UITextField*)[self.view viewWithTag:1];
[UIView animateWithDuration:1 animations:^{box.frame = CGRectMake(0,0,1,1);}];
我错过了什么?