1 2 3 4 5 6 7 8 9
|
CGRect rectStatus = [[UIApplication sharedApplication] statusBarFrame]; NSLog(@"status width - %f", rectStatus.size.width); NSLog(@"status height - %f", rectStatus.size.height);
CGRect rectNav = self.navigationController.navigationBar.frame; NSLog(@"nav width - %f", rectNav.size.width); NSLog(@"nav height - %f", rectNav.size.height);
|
近期评论