我不知道为什么,但我在试图弄清楚如何返回主视图时遇到了很多麻烦。我使用下面的代码切换到新视图,但我该如何返回?
@IBAction func printPage(sender: AnyObject) {
var vc = self.storyboard?.instantiateViewControllerWithIdentifier("labelView") as PrintLabelView
self.presentViewController(vc, animated: true, completion: nil)
vc.toPass = skuLabel.text
}