I'm making use of [[UIScreen mainScreen] bounds]
for the basis of framing a lot of sub-views. I'm also making use of values from [[UIApplication sharedApplication] statusBarFrame]
and self.navigationController.toolbar.frame
to ultimately determine the framing of useful view space I can make use of in the app.
I'm seeing problems as I try to handle device rotation. With some debugging, I'm learning that the values I get from the methods above aren't necessarily what I'm looking for.
In short, no matter the device rotation, I'm ultimately looking for the size of the view (screen minus status and navigation control toolbar) that is my working area. How do you advise I obtain this size/frame?
Thanks.