TextField がクリックされたときにビューを移動したいのですが、textDidChange
テキストを変更したり何かを書いたりするときにのみ機能するので、TextField をクリックしたときにメソッドを呼び出す方法を教えてください。
-(void)textFieldTextDidChange:(UITextField*)tf{
[self showAnimationPests];
}
-(void) showAnimationPests{
[UIView animateWithDuration:0.5
animations:^{
self.view.frame = CGRectMake(0,-300,1024,768);
}];
}
textchange の代わりに、テキストフィールドをクリックしたい
.h ファイル内
IBOutlet UIButton*button1;
IBOutlet UIButton*button2;
IBOutlet UIButton*button3;
IBOutlet UIButton*button4;
IBOutlet UIButton*button5;
IBOutlet UIButton*button6;
IBOutlet UIButton*button7;
IBOutlet UIButton*button8;
IBOutlet UIButton*button9;
IBOutlet UIButton*button10;
@property(nonatomic,retain)IBOutlet UIButton*button1;
@property(nonatomic,retain)IBOutlet UIButton*button2;
@property(nonatomic,retain)IBOutlet UIButton*button3;
@property(nonatomic,retain)IBOutlet UIButton*button4;
@property(nonatomic,retain)IBOutlet UIButton*button5;
@property(nonatomic,retain)IBOutlet UIButton*button6;
@property(nonatomic,retain)IBOutlet UIButton*button7;
@property(nonatomic,retain)IBOutlet UIButton*button8;
@property(nonatomic,retain)IBOutlet UIButton*button9;
@property(nonatomic,retain)IBOutlet UIButton*button10;