Objective c 的新手,因此示例将不胜感激。我想要做的是将文本输入到 UITextfield 并删除 IBAction 上 UITextView 中文本的出现。
都知道 html、javascript 和 css。很难教老狗新技巧,但要努力。
提前感谢所有回复。
-(IBAction)tel2{
[UIButton beginAnimations:nil context:nil];
[UIButton setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:tel2 cache:YES];
[UIButton setAnimationDelegate:self];
[UIButton setAnimationDidStopSelector:@selector(test)];
[UIButton setAnimationDuration:.5];
if(tails2.tag==11){
[tel2 addSubview:tails2];
tails2.tag=22;
textField.text = [NSMutableString stringWithFormat:@" %@", textField2.text];
}
else{
[tel2 addSubview:heads2];
tails2.tag=11;
textField.text = [NSMutableString stringWithFormat:@"%@ %@", textField.text, textField2.text];
}
[UIView commitAnimations];
}