How can I make my view resize in response to the in-call status bar from my nib?
I figured it would just be setting the resize properties, but they\'re not enabled f
You're looking for -[UIApplication statusBarFrame] and, in your UIApplicationDelegate, you should implement this delegate method to be notified of when the status bar's frame changes:
- (void)application:(UIApplication *)application didChangeStatusBarFrame:(CGRect)oldStatusBarFrame