UIAlertView に UITextField があります。
アラート ビューのテキスト フィールドに 6 文字をコピー アンド ペーストすると正常に機能しますが、6 文字以上をペーストすると機能しません。
どうすればこれを解決できますか?
-(IBAction)btnForgotPasswordHandler:(id)sender{
cancelbtnPressed = NO;
self.alert=[[UIAlertView alloc]initWithTitle:@"Skribbee" message:@"Please input your email address to proceed!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Cancel", nil];
[self.alert setAlertViewStyle:UIAlertViewStylePlainTextInput];
tfLostPassword=[alert textFieldAtIndex:0];
tfLostPassword.delegate = self;
[tfLostPassword setKeyboardType:UIKeyboardTypeEmailAddress];
[tfLostPassword setPlaceholder:@"Email Address"];
tfLostPassword.returnKeyType = UIReturnKeyGo;
[self.alert show];
}