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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T09:45:56+00:00 2026-06-18T09:45:56+00:00

I have a simple tableView. If I tap on the label (left side), didSelectRowAtIndexPath

  • 0

I have a simple tableView. If I tap on the label (left side), didSelectRowAtIndexPath fires ok. It does not fire when I tap on the right side (textField).

I cannot figure what I’m missing.. My code to create and select the cells is as follows:

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];

        UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 150, 30)];
        textField.delegate = self;
        textField.returnKeyType = UIReturnKeyDone;
        textField.borderStyle = UITextBorderStyleNone;
        cell.accessoryView = textField;
        textField.text = [NSString stringWithFormat:@"%d ", indexPath.row];
    }

    cell.textLabel.text = [NSString stringWithFormat:@"Line %d", indexPath.row];

    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"%s", __FUNCTION__);
    currentIndexPath = indexPath;
    NSLog(@"didSelect currentIndexPath.section is %i", currentIndexPath.section);
    NSLog(@"didSelect currentIndexPath.row is %i", currentIndexPath.row);
}

All help appreciated.

  • 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-06-18T09:45:58+00:00Added an answer on June 18, 2026 at 9:45 am

    I’m pretty sure this is by design. Tapping inside a UITextField that is in a row doesn’t automatically select the row. If your rows have Accessory Buttons, tapping them doesn’t select the row, either.

    Edit

    If you’d like to know the index path of the TableViewCell that contains the active TextField, add this to your textFieldShould/DidBeginEditing:

    id cellContainingFirstResponder = textField.superview.superview ;
    NSIndexPath* indexPathContainingFirstResponder = [self.tableView indexPathForCell:cellContainingFirstResponder] ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this simple code: -(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { BGEditTextField * theTableViewCell
i have created a simple table view containg an image on the left side
I'm developing a simple product catalog in Titanium and I have a TableView with
I have a simple TableView containing several cells. Normally, I switch to selected cell
I currently have a simple tableview with 7 cells in it. When a row
I have a simple questionnaire app that uses tableview. When users answers questions they
I have a simple iOS 5 storyboard that contains a tableview controller scene. However,
I have my app have a simple TableView, and it was working all day
I have a very simple tableview in a xib file with it's delegate and
I have a simple application with two views, one is a TableView and the

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.