Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ContainerView embedded in ViewController: Outlets are nil

As I am trying to update a container view content from its parent view controller with a function.

After updating the initial ViewDidLoad sets. The app crashes. It seems like all Outlets become nil

like image 514
JVS Avatar asked Feb 09 '23 11:02

JVS


1 Answers

You need to get a reference to the view controller in the container view and then you should have access to all its outlets. Assign a segue identifier to the segue to the container view controller and get a reference when the segue is called.

For example to update a label in the container view controller from a button in the parent view controller.

Parent view controller:

import UIKit

class ViewController: UIViewController {
     var containerVC : ContainerVC!

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    }

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    // Get the new view controller using segue.destinationViewController.
    // Pass the selected object to the new view controller.
    if (segue.identifier == "segueContainer")
        {
            containerVC = segue.destinationViewController as! ContainerVC
        }
    }


@IBAction func butUpdateContainerLabelAction(sender: AnyObject) {
    if containerVC != nil{
           containerVC.lblDemo.text = "some new text"
       }
    }

}

Container View Controller

class ContainerVC: UIViewController {

@IBOutlet weak var lblDemo: UILabel!

override func viewDidLoad() {
    super.viewDidLoad()

    // Do any additional setup after loading the view.
   }
}
like image 71
Peter Todd Avatar answered Feb 11 '23 00:02

Peter Todd