我有UI子,但顿有一席之地,开着一席之机,即一席之机,(有3个表格)——并特;一席之机有第二通话——和大通;一通风机。
一切都存在故事。
在第一通话中,准备就绪的ForSeque公司进行罚款。 我甚至没有。
但是,第二版 View子 prepare。 因此,我补充说,SelectRowAtIndexPath如下。 但是,“ForSegue”依然没有工作。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[self performSegueWithIdentifier:@"ShowComment" sender:self];
}
-(void) performSegueWithIdentifier:(NSString *)identifier sender:(id)sender
{
[self prepareForSegue:self.storyboard sender:self];
}
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
//When a row is selected, the segue creates the detail view controller as the destination.
//Set the detail view controller s detail item to the item associated with the selected row.
NSLog(@"test");
if ([[segue identifier] isEqualToString:@"ShowComment"]) {
}
}