In a UIViewController
, after I call self.view.frame.size.height = 99
, how can I get back the original height of the view (without saving it in a variable)?
I thought of UIScreen.mainScreen().bounds.height
, but that may not be accurate if a navigation bar or some other bar is present.