0
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
     if ([[segue identifier] isEqualToString:@"ShowWordDetailsTwo"]) {
        NSIndexPath *indexPath = nil;
        Words *word = nil;
        indexPath = [self.tableView indexPathForSelectedRow];
        word = [myFavsTwo objectAtIndex:indexPath.row];

         DetailsViewController *destViewController = segue.destinationViewController;
         destViewController.word = word;
    }
}

我在 segue 上崩溃了——断点在:

     destViewController.word = word;

但如果我在调试器上“继续”,一切都会正常工作——应用程序似乎被挂断在这条线上......

我认为这与我的对象是 NSCoder 的 NSUserDefaults 的一部分有关...

我怎样才能使应用程序不会崩溃?!

我没有收到任何错误消息,只是一个断点错误

4

1 回答 1

1

只是澄清一下,

断点是您自己创建的,还是由调试器自动创建的?

尝试禁用断点以查看它是否有效。

于 2014-03-16T12:51:45.510 回答