我有这段代码:
第一个视图控制器
- (IBAction)finishedCreated:(UIStoryboardSegue *)unwindSegue
{
CreateWifiCacheViewController *vc = unwindSegue.sourceViewController;
self.l_nameCache.text = vc.info;
NSLog(@"%@", @"WORKING!!!!");
}
第二个视图控制器
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
NSLog(@"%@", @"Trying to unwind");
self.info = self.tf_test.text;
}
该代码连接到一个按钮,但只能在模拟器中使用。当我在真实设备上运行时,根本不起作用。这些方法未被调用,或者未运行。甚至没有在设备或Xcode上显示错误! 项目目标IOS至少为7.0,我的设备为7.1.2。