我正在开发 Storyboards。我使用了一个表格视图,并在它的单元格上创建了一个从这个表格视图单元原型到新视图控制器的 Segue。
我也包括了一个方法
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
UITableViewCell *cell=sender;
NSLog(@"%@",cell.textLabel.text);
thirdViewController *thid=[segue destinationViewController];
thid.strValue=cell.textLabel.text;
}
但它没有被调用。
这个方法什么时候被调用..?
任何帮助将不胜感激。
谢谢维卡斯