所以我前几天发布了一个问题,这个人给的代码带来了一个我无法解决的错误。他不会给我回复。所以我觉得我只会提出一个新问题。
以下是上一个问题的链接:How to re-create a mainstoryboard if needed
这是给我问题的代码。
@IBAction func Create(sender: AnyObject) {
//Create a new instance of a Note card view controller
let newCard = self.storyboard!.instantiateViewControllerWithIdentifier("NoteCard")
self.presentViewController(newCard, animated: true)
}
此行发生错误:
self.presentViewController(newCard, animated: true)
以下是我想要做的一些背景知识。我正在尝试制作一个notecard应用程序。当用户在新卡上按下create时,应该使用新内容创建一个新视图。
如有任何问题,请与我联系!
答案 0 :(得分:0)
更改
self.presentViewController(newCard, animated: true)
到
self.presentViewController(newCard, animated: true, completion:nil)
这可能无法解决您的所有问题,但至少您会调用一种实际存在的方法,这与您现在所做的不同。