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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:19:37+00:00 2026-06-14T18:19:37+00:00

I have a problem with the UItableViewCell accessory button. My accessory button is connected

  • 0

I have a problem with the UItableViewCell accessory button.
My accessory button is “connected” with a segue to another UIViewController.
When I tap on an accessory button, I get the object from the model and I “pass” this object to the segue destinationViewController.
This is my prepare for segue method:

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([segue.identifier isEqualToString:@"IdentityCard"])
    {
        NSLog(@"%i" ,self.tableView.indexPathForSelectedRow.row);
        [segue.destinationViewController showIdentityCardForTeacher:[self.teachers getTeacherInPosition:self.tableView.indexPathForSelectedRow.row]];
    }
}

The problem is that the NSLog at the beginning of the method (after the “if”) show always the number 0!
I tried to implement the method:

-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath

but the prepare for segue method is executed before this method, so I can’t set any @property for “save” the indexPath.
How can I solve this problem?

  • 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-14T18:19:39+00:00Added an answer on June 14, 2026 at 6:19 pm

    I fix the problem in this way:
    I connected the UIViewController to the destinationViewController (NOT FROM THE ACCESSORY BUTTON BUT FROM THE UIViewController).

    I created a @property in the first View Controller:

    @property (nonatomic) NSInteger indexPathRow;
    

    then I modified the code like this:

    -(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
    {
        NSLog(@"Disclosure Tapped----> %i" ,indexPath.row);
        self.indexPathRow = indexPath.row;
        [self performSegueWithIdentifier:@"IdentityCard" sender:self];
    }
    
    -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    {
        if ([segue.identifier isEqualToString:@"IdentityCard"])
        {
            NSLog(@"%i" ,self.tableView.indexPathForSelectedRow.row);
            [segue.destinationViewController showIdentityCardForTeacher:[self.teachers getTeacherInPosition:self.indexPathRow]];
        }
    }
    

    Now it works!

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

Sidebar

Related Questions

have a little problem with this code: UITableViewCell *cell = (UITableViewCell *)[[button superview] superview];
I want to place UItextField in UITableViewCell but I have problem. Text field don't
I have put a web view inside a uitableviewcell Problem : didSelectRowAtIndexPath is not
I have the next problem. In one of the cells (UITableViewCell) I need to
I have problem with UIWebView delay when the load image from url. In my
I have a small problem with the UITableviewCell. i'm using the code: UIView *cellBackView
I have a UITableViewController that displays a custom UITableViewCell (inherited from UITableViewCell). That same
Am I the only one who get this problem? I have few sections and
I have a problem after the data being fetched from Core Data. I filled
I have a UITableViewCell subclass with backgroundView set to my own UIView object. This

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.