I have got two views. first ist "homeView" the second is "detailView".
in homeView i have two buttons button1 button2
in detailView i have on label label1
when i push button1 the should change to "detailView" an the label1.text should be "button 1 gedrückt" when i push button2 the should change to "detailView" an the label1.text should be "button 2 gedrückt"
when i use the code:
@IBOutlet weak var label1: UILabel!
@IBOutlet weak var label2: UILabel!
@IBAction func button1(sender: UIButton) {
let vc : AnyObject! = self.storyboard!.instantiateViewControllerWithIdentifier("detailview")
self.showViewController(vc as! UIViewController, sender: vc)
// self.label1.text = "button 1 gedrückt"
}
the view will change, but the label1.text won´t change. if i use
@IBOutlet weak var label1: UILabel!
@IBOutlet weak var label2: UILabel!
@IBAction func button1(sender: UIButton) {
let vc : AnyObject! = self.storyboard!.instantiateViewControllerWithIdentifier("detailview")
self.showViewController(vc as! UIViewController, sender: vc)
self.label1.text = "button 1 gedrückt"
}
i don´t know what i can do??