私のコードは次のとおりです。
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showDetail"]) {
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
NSString *string = [feeds[indexPath.row] objectForKey: @"description"];
NSLog(@"Description : %@" , string);
[[segue destinationViewController] " WHAT TO CODE IN HERE ? "];
} }
viewController の NSLog に「文字列」を表示する必要があります。助けはありますか?