Pushing to a Detail View from a Table View Cell using Xcode Storyboard

前端 未结 1 533
旧巷少年郎
旧巷少年郎 2020-12-25 08:09

I have a table view inside a View Controller. I can populate all my information inside the table view. However I am a bit lost for setting up the detail views. I believe eac

相关标签:
1条回答
  • 2020-12-25 09:15

    I think you made this a little too complicated. Don't worry, I do the same thing often.

    First, by sending tableView:didSelectRowAtIndexPath: from within tableView:accessoryButtonTappedForRowAtIndexPath: there is no difference between the two methods. Tapping the cell, or it's accessory button performs the same action. If you don't need the accessory button to perform a different action than tapping the cell itself, remove it.

    Second, if you're using a storyboard, you do not need to alloc/initWithNib for your view controllers. Instead, use a segue. If you do this through the storyboard, you also don't need to programmatically push viewControllers onto your navigationController

    Build your storyboard first:

    1. Drag out a UITableViewController. Make sure you set the class of the UITableViewController you dragged out to your own "DetailViewController" using the inspector pane on the right side.
    2. Then select this controller and using the menus choose "Editor->Embed In->Navigation Controller".
    3. Next, drag out three generic UIViewControllers. Set the class of one to "LatteViewController", another to "EspressoViewController", and a third to "CapicinoViewController" (using the inspector again).
    4. Control+drag from the UITableViewController over to each of these viewControllers and choose PUSH.
    5. Click on the little circle that's on the arrow between your UITableViewController and each of these viewControllers. In the inspector (on the right side), give each segue a unique name in the Identifier field. You will need to remember this name for your code. I would name them "EspressoSegue", "LatteSegue", and "CapicinoSegue". You'll see why in the code below.

    Then put the following code in your UITableViewController:

    - (void)tableView:(UITableView *)tableView 
    didSelectRowAtIndexPath:(NSIndexPath*)indexPath {
    
    //Build a segue string based on the selected cell
    NSString *segueString = [NSString stringWithFormat:@"%@Segue",
                            [contentArray objectAtIndex:indexPath.row]];
    //Since contentArray is an array of strings, we can use it to build a unique 
    //identifier for each segue.
    
    //Perform a segue.
    [self performSegueWithIdentifier:segueString
                              sender:[contentArray objectAtIndex:indexPath.row]];
    }
    

    How you implement the rest is up to you. You may want to implement prepareForSegue:sender: in your UITableViewController and then use that method send information over to segue.destinationViewController.

    Note that I passed the string from your contentArray as the sender for the segue. You can pass whatever you like. The string that identifies the cell seems like the most logical information to pass, but the choice is up to you.

    The code posted above should perform the navigation for you.

    0 讨论(0)
提交回复
热议问题