UITextField
我对在动画块中移动时出现的伪影有疑问...
在我移动之前UITextField
,它看起来像这样:
像这样移动之后:
我的猜测是它与UITextField
移位后的字体有关。
这是我用于移动的代码UITextField
:
if (answerText.editing)
{
[UIView beginAnimations:@"Moving UITextField" context:nil];
[UIView setAnimationDelegate:self];
[UIView setAnimationDuration:1.0];
movingAnswer = CGPointMake(160,75);
answerText.center = movingAnswer;
[UIView commitAnimations];
}