The first time I install a viewController, the measurements of its storyboard views update me to the real ones of the device.
So if I make a self.view.frame.width inside viewDidAppear it gives me the value of that measure adapted according to the device.
But if I delete the view and re-instantiate it to call it again then self.view.frame.width always gives me the same fixed value of the view according to the storyboard that I have.
How do I make it behave like the first time and give me the measures adapted according to the device?