呈现ViewController的Xcode问题

时间:2014-09-21 20:05:23

标签: ios objective-c iphone xcode

我有一个非常讨厌的问题。我有两个视图控制器。我只是称它们为ViewController和SecondViewController。它们没有在UINavigationController中链接。 当我呈现SecondViewController时,我没有收到任何错误。现在我回到ViewController。当我现在调用SecondViewController时,我收到两个错误:

Presenting view controllers on detached view controllers is discouraged <ViewController: 0xadd5220>.

*** -[SecondViewController isKindOfClass:]: message sent to deallocated instance 0x16bc1e30

我使用自定义segues,但是当我使用模态segues时它是相同的

你能帮助我吗?

此致 雅尼

1 个答案:

答案 0 :(得分:1)

当您返回ViewController时,看起来您的SecondViewController实例已经消失。确保在调用它之前再次实例化它。