I honestly can\'t understand what am i doing wrong.
I have this shared Instance of my UIViewController :
static let sharedInstance = UIStoryboard(name:\"
The outlets aren't set up initially. The standard way to deal with this is to store your data in properties and then move that data into your outlets in viewDidLoad
.
Since you are loading this in a Singleton, viewDidLoad
will only be called once. Instead, copy your data from your properties to your outlets in viewWillAppear
.