UITextField ResignFirstRespond not working in iphone? - iphone

I am designed one form with four UITextFields. First One for entering numbers, Second for entering name, third for choosing date and last one for choosing time. First textfield using Numberpad it will hide by using done button on the keyboard. If the user when enter into second (Name textfield) from first (number textfield) the first keyboard hide perfectly. If the user entering name and select date textfield am showing the datepicker in Actionsheet, when the user pick the date and hit done/cancel button i hide the actionsheet. But, the name textfield keyboard don't dismiss from the screen. I have tied below code, it is not working. Can anyone please suggest the idea for this clarification? Thanks in advance.
-(void)textFieldDidBeginEditing:(UITextField *)textField
{
if (textField == numberTextfield)
{
[textField setInputAccessoryView:keyboardToolbar];
}
else if(textField == nameTextfield)
{
}
else if(textField == dateTextField)
{
[self showdateActionSheet];
[nameTextfield resignFirstResponder];
[dateTextField resignFirstResponder];
}
else if(textField == timeTextField)
{
[timeTextField resignFirstResponder];
[nameTextfield resignFirstResponder];
}
}
- (BOOL) textFieldShouldReturn:(UITextField *)textField // If the user select Return key it is dismissing fine
{
[nameTextfield resignFirstResponder];
return YES;
}
-(BOOL) textFieldShouldEndEditing:(UITextField *)textField
{
[nameTextfield resignFirstResponder];
return YES;
}
-(void) DateDone
{
[nameTextfield resignFirstResponder];
}
-(void) timeDone
{
[nameTextfield resignFirstResponder];
}

Gopinath. Please try my following code,
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if (textField == dateTextField )
{
[nameTextfield resignFirstResponder];
[self showdateActionSheet];
[dateTextField resignFirstResponder];
}
else if( textField == timeTextField)
{
[nameTextfield resignFirstResponder];
[self ShowTime];
[timeTextField resignFirstResponder];
}
return YES;
}
I am sure i will help you.

Just do this:
self.view.editable = NO;
Link: How can I programmatically link an UIView or UIImageView with an event like “touch up inside”.

Related

How do I set the next text field in focus for editing when the user hits return? [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
How to navigate through textfields (Next / Done Buttons)
iOS app “next” key won’t go to the next text field
I have two text fields in my view and I'd like the cursor to move from the email text field to the password text field when the user hits the return key. If the password text field is the one in focus, I'd like the keyboard to hide. Here's what I currently have, but it doesn't work...
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
return YES;
}
- (void)textFieldDidEndEditing:(UITextField *)textField {
if(textField == self.emailTextField) {
[self.passwordTextField becomeFirstResponder];
}
else if (textField == self.passwordTextField) {
[textField resignFirstResponder];
}
}
What am I missing? Thanks so much in advance for your wisdom!
The code you have in the textFieldDidEndEditing: method belongs in the textFieldShouldReturn: method.
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if(textField == self.emailTextField) {
[self.passwordTextField becomeFirstResponder];
} else if (textField == self.passwordTextField) {
[textField resignFirstResponder];
}
return NO;
}
Well, for the reference we have below two textfields,
UITextField *email_Text;
email_Text.tag = 100;
email_Text.delegate = self;
UITextField *password_Text;
password_Text.tag = 101;
password_Text.delegate = self;
You must implement UITextFieldDelegate in you .h file.
Currently iam not using any allocation methods here now for the textfields. You have to alloc it or making it as outlet if the textfield is in the xib by yourself. I am simply just having two objects for reference only. And also these objects must be globally accessible in the class (i mean you should declare it in the header).
The next step is to implement the textFieldShouldReturn: delegate of UITextField.
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if(textField.tag == 100)
{
[password_Text becomeFirstResponder];
}
else if(textField.tag == 101)
{
[textField resignFirstResponder];
}
else
{
; //NOP
}
return YES;
}
Try this.
Happy Coding :)
you miss one thing
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
if(textField == self.emailTextField) {
[self.passwordTextField becomeFirstResponder];
[self.emailTextField resignFirstResponder];
} else if (textField == self.passwordTextField) {
[textField resignFirstResponder];
[self.emailTextField becomeFirstResponder];
}
return NO;
}

text field is not getting clear

I have a textfield from which I show a popover for textfield value string.
When I edit the text field the clear button is visible, however, when I click the clear button,
textfield text doesn't disappear but the popover is dismissed.
How can I fix this please?
Below is code fragment
- (void)textFieldDidBeginEditing:(UITextField *)textField
{
if ([popOverController isPopoverVisible])
{
[popOverController dismissPopoverAnimated:YES];
}
if(textField.tag == SERVER_TAG){
if ([[self getServerList] count]) {
[self createPopUp];
}
} else {
[serverNameTf resignFirstResponder];
}
}
- (BOOL)textFieldShouldClear:(UITextField *)textField {
return YES;
}
Its better if you paste your code that you tried.
But as i understood from your question, you may not set the TEXTFIELDs delegate,
so st the textfields delegate to self.
ie. textfield.delegate = self
and also make changes as >>
[textField setText:#""];
[popOverController dismissPopoverAnimated:YES];
Try this out.
if ([popOverController isPopoverVisible])
{
[textField setText:#""];
[popOverController dismissPopoverAnimated:YES];
}

UItextField Delegate not working

In my iPad app I have two textfields. One displays the normal, default textfield and the other should display a picker as its input view.
Problem is, once I use the txt1 which displays default keyboard and then when I touch the 2nd textField the txt1 keyboard is staying visible.
I have also written [txt1 resignFirstResponder]; [txt2 resignFirstResponder]; while displaying the picker.
I have checked the txt1 IBOutlet connection and the delegate assignment, those seem to be correct.
What am I missing?
Write the following code :
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if(textField == txt1)
{
return YES;
}
else
{
return NO; // Write the code for displaying UIPickerView instead of the Keyboard.
}
}
Hope this might solve your issue......
txt2.userInteractionEnabled = NO;
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if(textField == txt1)
{
[txt2 resignFirstResponder];
// code for Hide Picker
return YES;
   }
else {
// [txt2 resignFirstResponder];
[txt1 resignFirstResponder];
// code for go in picker
return YES;
}
}
for more information
You have to implement below method to resign Keyboard......
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
Have u implemented this method ??
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
In your viewDidLoad method write this,
txt2.inputView = pickerView;
and other resignFirstResponder codes should be placed correctly , by this on Tapping txt2, you will directly get pickerview instead of Keyboard.
did you implement the delegates property of UITextFieldDelegates to in the header file, if not do that and check

How can I make the keyboard of other text field disappear while accessing other text field

I have two text fields in my view. I did it using IB. in second text field i am using the action sheet
After entering the text in textField1 I am in text Field-2.In second text field i am using the action sheet with a picker to select the date. so i resigned the textfield -2 keyboard before opening the action sheet. after i dismiss the action sheet when i tried to resign the keyboard it is not returning.
i used
- (BOOL)textFieldShouldReturn:(UITextField *)textField{
[textfield1 resignFirstResponder];
return YES;
}
to resign the textfield1 ..
- (void) viewDidLoad
{
//don't forget to add <UITextFieldDelegate> in your .h
firstTextField.delegate=self;
secondTextField.delegate=self;
}
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if(textField.tag==2)
{
//Here you can call function to view your datepicker
return NO; //Will not open keyboard for second textfield.
}
return YES;
}
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
You have return current textField textFieldShouldReturn method change your textFieldShouldReturn metod like below
- (BOOL)textFieldShouldReturn:(UITextField *)textField{
[textField resignFirstResponder];
return YES;
}
You need to Give the tag for TextField,
Within this method,
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if (textField.tag == 2)
{
[textField1 resignFirstResponder];
// your action sheet code here
}
}
- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textfield resignFirstResponder]
return YES;
}
Set tag to every text fields and check them in
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
if([textfield.tag == 1])
{
[textFieldFirst resignFirstResponder];
}
else
{
// your action sheet code here
}
return YES;
}

How to unhide the keyboard of the current active textbox?

I have an IBAction linked up to EditingDidBegin on all my UITextFields, so why isn't the following code working when the UITextFields are tapped on?
-(IBAction)keyboardShouldShow
{
[self becomeFirstResponder];
NSLog(#"Keyboard Showing");
}
Also bear in mind that the keyboard will not show unless this code is added because of other code I have in my project file.
Thanks
your self is not your textfield.try to change the method to this and relink it to editingdidbegin.
-(IBAction)keyboardShouldShow:(UITextField*)sender
{
[sender becomeFirstResponder];
NSLog(#"Keyboard Showing");
}
HIH
Because self is your view controller, not the UITextField.
Use the UITextFieldDelegate method:
- (void) textFieldDidBeginEditing:(UITextField *)textField {
if ([textField isKindOfClass:[UITextField class]]) {
[textField resignFirstResponder];
NSLog(#"Keyboard Showing");
}
}
And if you want to use your own method, be sure to pass the UITextField as a parameter.
Change the method to something like:
-(IBAction)keyboardShouldShow:(id)sender {
if ([sender isKindOfClass:[UITextField class]]) {
[sender resignFirstResponder];
NSLog(#"Keyboard Showing");
}
}