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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:32:34+00:00 2026-06-13T18:32:34+00:00

Very beginner obj-c question. I have grouped TableView with two sections http://uaimage.com/image/c6c9ca23 . In

  • 0

Very beginner obj-c question.

I have grouped TableView with two sections http://uaimage.com/image/c6c9ca23 . In first section I have custom cells with UITextField‘s in them. I need to implement Input Accessory View For keyboard with additional buttons “Next”, “Prev” (to switch between text fields in first section) and “Done”(to dismiss the keyboard) http://uaimage.com/image/62f08045 .

Question is: what do I need to implement possibility to switch between text fields in cells in first section of TableView by tapping input Accessory buttons?
Do I need to tag cells or text fields and if so, how can I retrieve their value when user will tap on Input Accessory buttons? Or it is a better approach to do this?

Thanks, Alex

  • 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-13T18:32:35+00:00Added an answer on June 13, 2026 at 6:32 pm

    I assume say u have 3 UITextField ie txt ,txt1, txt 2 with tags 0 1 and 2; Now add UITableViewCell *cell in .h file.

    EDIT :
    Now to get references of all textField from current tableView cell add this delegate method:

    - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
    {
        cell = nil;
        cell = (UITableViewCell *)[textField superView];
        return YES;
    }
    

    Now in Input Accessory prev button action do this:

    -(IBAction)previousBtn:(id)sender
    {
       UITextField *txt = (UITextField*)[cell viewWithTag:0];
       UITextField *txt1 = (UITextField*)[cell viewWithTag:1];
       UITextField *txt2 = (UITextField*)[cell viewWithTag:2];
       if(txt.isFirstResponder)
       {
        [txt resignFirstResponder];
        [txt2 becomeFirstResponder];
       }
       else if(txt1.isFirstResponder)
       {
        [txt1 resignFirstResponder];
        [txt becomeFirstResponder];
       }
       else if(txt2.isFirstResponder)
       {
        [txt2 resignFirstResponder];
        [txt1 becomeFirstResponder];
       }
    }
    

    Now in Input Accessory next button action do this:

    -(IBAction)nextBtn:(id)sender
    {
       UITextField *txt = (UITextField*)[cell viewWithTag:0];
       UITextField *txt1 = (UITextField*)[cell viewWithTag:1];
       UITextField *txt2 = (UITextField*)[cell viewWithTag:2];
    
       if(txt.isFirstResponder)
       {
        [txt resignFirstResponder];
        [txt1 becomeFirstResponder];
       }
       else if(txt1.isFirstResponder)
       {
        [txt1 resignFirstResponder];
        [txt2 becomeFirstResponder];
       }
       else if(txt2.isFirstResponder)
       {
        [txt2 resignFirstResponder];
        [txt becomeFirstResponder];
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Very beginner obj-c question. I have plain UITableView with two sections, but I am
Very beginner obj-c question. Is it a possibility to ask about who is first
Probably a very basic beginner question. Imagine the following situation: I have an ASP.NET
This is a very beginner question. I have tried to search for advice but
Ok so this is probably a very beginner question but... Right now I have
I am very beginner in C. I have the following structure typedef struct {
I am very much a beginner to rails and I have a specific need
I'm very new to Objective-C, and am having some beginner issues. I have an
Very simple + silly question: Does clojure provide multi maps? I currently have something
Very simple question... I have an array of pixels, how do I display them

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.