CGRect rect = [[UIScreen mainScreen] bounds] ; NSLog(@"bounds %@",NSStringFromCGRect(rect)) ;
3GSで実行すると以下のような結果になります。
bounds {{0, 0}, {320, 480}}
CGRect rect = [[UIScreen mainScreen] applicationFrame] ; NSLog(@"applicationFrame %@",NSStringFromCGRect(rect)) ;
3GSで実行すると以下のような結果になります。
applicationFrame {{0, 20}, {320, 460}}