Xcode 5.1.1

我正在使用2个视图控制器 . ViewController1和ViewController 2.当我点击ViewController 1中的BACK按钮转到ViewController 2时,我想做展开segue . 所以在View Controller2 .h文件中我输入 - (IBAction)返回:(UIStoryboardSegue *)segue;然后在viewEtroller 2.m文件正上方@end我输入 - (IBAction)返回:(UIStoryboardSegue *)segue {} . 然后我去故事板,从我的第二个viewController我拖动按钮到绿色退出点击返回 . 在连接检查器中,我将RETURNED连接到viewController2中的按钮,说“内部触摸” . 然后我从ViewController2到ViewController做一个模态1.加载模拟器,点击ViewController 2中的按钮,将我带到ViewController 1,然后点击ViewController 1中的BACK按钮,它就没有了 . 放松segues不起作用 .

我做错了什么?