For example I have two view controller 1. ViewControllerA 2. ViewControllerB
ViewControllerA has a Button named as "Select State" and id is 'buttonState' now I want to change that button title like "Tamil Nadu" in ViewControllerB.
I have tried the code bellow
let vc1 = ViewControllerA()
vc1.buttonState.setTitle("Tamil Nadu", for: .normal)
but it does not works and giving the error is "unexpectedly found nil while unwrapping an Optional value"
Now am looking for your help. Thank you