我有一个包含 5 个UITextView
对象的页面。我使用该textViewDidBeginEditing:
方法为observationComment
文本框设置动画,效果很好。但是现在我想对其他 4 个做同样的事情,但我似乎无法弄清楚如何确定哪个文本视图被点击了。observationComment
每次我点击其他任何一个时,都会触发文本框。
-(void) textViewDidBeginEditing:(UITextView *) observationComment
{
[self.view bringSubviewToFront:observationComment];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
obsCommentLabel.frame= CGRectMake(192, 113, 148, 21);
observationComment.frame=CGRectMake(191, 135, 710, 250);
[UIView commitAnimations];
}