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

  • Home
  • SEARCH
  • 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 6158617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:59:17+00:00 2026-05-23T20:59:17+00:00

All, I have a table view that I need to react differently when a

  • 0

All,

I have a table view that I need to react differently when a cell is clicked with string X in it vs string Y. X would take you to to X View (XViewController) and Y would take you to Y View (YViewController), etc etc. Where would be the best place to insert this if statement, and how would I make it transition to the correct view?

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-23T20:59:17+00:00Added an answer on May 23, 2026 at 8:59 pm

    You want to implement

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

    Then you can access the cell in question to read the string and present the appropriate view controller.

    For example:

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
        UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
        if ([cell.text isEqualToString:stringX]) {
            XViewController *xvc = [[XViewController alloc] init];
            [self presentModalViewController:xvc animated:YES];
            [xvc release];
        } else {
            YViewController *yvc = [[YViewController alloc] init];
            [self presentModalViewController:yvc animated:YES];
            [yvc release];
    }
    

    Then, in whichever viewController is pushed, you can dismiss it with

    [self dismissModalViewControllerAnimated:YES];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Pages table that stores all my view urls and this table
I have a simple table view which is editable. All I need the user
I have a table that was imported as all UPPER CASE and I would
I have a table view with cells that can be deleted. When a cell
I have a table that stores all the volunteers, and each volunteer will be
I have a table (venues) that stores all the possible venues a volunteer can
I have a table (participants) which has multiple columns that could all be distinct.
I have a table that has redundant data and I'm trying to identify all
I need to create a view or a table valued function that returns one
I have the following view that i need to display an error message when

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.