这可能很菜鸟,但是...
ViewControllers
我在我的Storyboard
, 和标识符之间设置了一个 segue clickBtn
。
现在我在我的代码中这样称呼它:
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"clickBtn"])
{
if(conditionVerified)
{
SecondViewController *controller = (SecondViewController *)segue.destinationViewController;
[controller setManagedObjectContext:self.managedObjectContext];
}
else
{
// If I enter here I get the error below
}
}
}
由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“+entityForName:nil 不是搜索实体名称“Link”的合法 NSManagedObjectContext 参数
事实上,如果我输入 else 语句,我不想进行这种转换。怎么做?