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 5928011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T14:14:38+00:00 2026-05-22T14:14:38+00:00

I have a textfield inside a UITableviewController . I want to get the user

  • 0

I have a textfield inside a UITableviewController. I want to get the user entered data after the user has finished typing and moves to the next field. I want to store that information.

Because once I scroll the user entered data disappears.

Any help is appreciated.

if (([indexPath section] == 1) && ([indexPath row] == 2))
{
    static NSString *CellIdentifier1 = @"Cell";

    GeneralInfocell *cell = (GeneralInfocell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier1];
    [[NSBundle mainBundle] loadNibNamed:@"GeneralInfocell" owner:self options:nil];

    cell = addresscell;

    cell.selectionStyle = UITableViewCellSelectionStyleNone;  
    addresscell.txtStreet.delegate = self;

    addresscell.txtStreet.font = [UIFont fontWithName:@"Arial" size:14];

    addresscell.txtStreet.keyboardType = UIKeyboardTypeDefault;
    addresscell.txtStreet.returnKeyType = UIReturnKeyNext;

    addresscell.txtStreet.backgroundColor = [UIColor whiteColor];
    addresscell.txtStreet.autocorrectionType = UITextAutocorrectionTypeNo;
    addresscell. txtStreet.autocapitalizationType = UITextAutocapitalizationTypeNone;
    addresscell. txtStreet.textAlignment = UITextAlignmentLeft;

    addresscell.txtStreet.textColor = [UIColor blackColor];

    [addresscell.txtStreet addTarget:self action:@selector(textFieldDidEndEditing:) forControlEvents:UIControlEventEditingDidEnd];
}

In the textFieldDidEndEditing method I have,

- (void)textFieldDidEndEditing:(UITextField *)textField {

    UILabel *label = [NSString stringWithFormat:@"%@",[addresscell.txtCity text]];
    NSLog(@"label:%@",label);

}

But I don’t get any value.

Thanks

  • 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-22T14:14:39+00:00Added an answer on May 22, 2026 at 2:14 pm

    Your UITextFieldDelegate should be something like this –

    - (void)textFieldDidEndEditing:(UITextField *)textField {
        NSLog(@"Data entered: %@", textField.text);
    }
    

    Since everything else is wired correctly, you should get a proper value now.

    Since cells are reused, you lose data on scrolling. You will need to reset the text field’s value every time the cell is requested. For this, you can maintain a mutable array of strings if there are multiple fields, one for each of the text fields. When a text field is dismissed, save the data entered in the array and restore it next time the cell is requested for.

    Let me know if you need any further assistance.

    EDIT
    tag all the ten text fields 0 to 9.

    Declare a NSMutableArray iVar in your view controller, say data, to store the strings for the text fields.

    In -viewDidLoad:,

    ...
    data = [[NSMutableArray] initWithCapacity:10];
    for ( int i = 0; i < 10; i++ ) {
        [data addObject:@""];
    }
    ...
    

    In -textFieldDidEndEditing:,

    ...
    [data replaceObjectAtIndex:[textField tag] withObject:[textField text]];
    ...
    

    In -tableView:cellForRowAtIndexPath:,

    ...
    // Since they are named variables, it will be something on lines of 
    addressCell.txtStreet.text = [data objectAtIndex:[addressCell.txtStreet tag]];
    // Repeat for all other text fields
    ...
    

    Don’t forget to release data in the dealloc method.

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

Sidebar

Related Questions

i have textfield inside html table..i want after i type something like name in
dear all..i have a textfield. i want after i have typed identity number inside
I have a textfield where the user can type what ever he want into
for example, I have a textfield, that records the user name, after I click
i have one textfield and one show button.. i want after i have been
dear i have a datepicker inside my form. after i click the textfield, datepicker
I have a TextField inside a Sprite and I always want the alpha of
I have an UITextField inside an UITableViewCell. I want the textField to return but
I have a textfield which displays a result but I don't want it to
I have a textField on my stage named 'adBuy', which when clicked I want

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.