Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3496730
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:17:05+00:00 2026-05-18T12:17:05+00:00

in my view I have several UITextFields and I need to show some times

  • 0

in my view I have several UITextFields and I need to show some times a keybord for text input and other times a UIDatePicker.

I order to show a DatePicker I implemented the delegate for the date UITextField, but once I select another UITextField for text input the DatePicker remains in background. Then I tried to implement the delegate also for another UITextField, with this code:

- (void)viewDidLoad {
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd/MM/yyyy"];
NSString *stringFromDate = [formatter stringFromDate:[NSDate date]];
NSLog(@"IN - AddExpenseViewController::viewDidLoad %s",stringFromDate);
date.text = stringFromDate;

datePicker.hidden = YES;
date.delegate = self;

amount.delegate = self;

isIncome = NO;


[super viewDidLoad]; }

// …

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
NSLog(@"IN - AddExpenseViewController::textFieldShouldBeginEditing %@",textField.placeholder);
if (![textField.placeholder isEqual:[NSString stringWithFormat:@"Date"]]) {
    [self hideDatePicker];
    [textField becomeFirstResponder];
    return YES;
}
else {
    [self showDatePicker];
}
return NO;}

The problem is that when I select the date TextField and than the amount, the delegate gets called in loop:

2010-12-05 13:15:17.324 AddExpense[1179:207] IN – AddExpenseViewController::textFieldShouldBeginEditing Amount
2010-12-05 13:15:17.324 AddExpense[1179:207] IN – AddExpenseViewController::hideDatePicker
2010-12-05 13:15:17.325 AddExpense[1179:207] IN – AddExpenseViewController::textFieldShouldBeginEditing Amount
2010-12-05 13:15:17.326 AddExpense[1179:207] IN – AddExpenseViewController::hideDatePicker
2010-12-05 13:15:17.327 AddExpense[1179:207] IN – AddExpenseViewController::textFieldShouldBeginEditing Amount
2010-12-05 13:15:17.327 AddExpense[1179:207] IN – AddExpenseViewController::hideDatePicker

and there is no way to stop it !
What is wrong with my code ?

Thanks in advance, AM

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T12:17:06+00:00Added an answer on May 18, 2026 at 12:17 pm

    Whenever you make UITextField firstReponder, textFieldShouldBeginEditing: is sent to its delegate.
    A temporary solution could be

    if (![textField.placeholder isEqual:[NSString stringWithFormat:@"Date"]]) {
        [self hideDatePicker];
        textField.delegate = nil;
        [textField becomeFirstResponder];
        textField.delegate = self;
        return YES;
    }
    

    But I recommend you to redesign your code to exclude [textField becomeFirstResponder] from that method.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have several uitextfields within a view and I would like to disable the
I have several BusinessObject classes that refer to each other and I need to
I have several UITextFields on my view (each inside a UITableViewCell). When the keyboard
I have several UITextFields listed below each other and would like to move the
I have 4 views. 3 views are used to input data in several UITextFields
I have a sign-up form in my application with several UITextFields. In order to
If you have several view models on one page, how do you ensure that
I have an app that have several views. In one view I would like
I have a view with a model that has several fields. When I render
I have a view controller based app that contains several views that I display/hide

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.