I am trying to show UIAlertView on Tap or Click of UITextField for both IPad and IPhone. I make an IBAction and Attach it with Tap Down event of UITextField.
But it
Try adding a target for when a particular text field begins editing (UIControlEventEditingDidBegin):
UIControlEventEditingDidBegin
[textField1 addTarget:delegate action:@selector(textField1Active:) forControlEvents:UIControlEventEditingDidBegin];