iPad: [UIScreen mainScreen].bounds returns wrong co-ordinates
[UIScreen mainScreen].bounds
returns (0,0,768,1024) even when the iPad is in Landscape mode.
It should return (0,0,1024,768) but instead it returns (0,0,768,1024).
What could b开发者_开发知识库e wrong?
Nothing's wrong. This is how it works unfortunately.
See this question: Returning incorrect rectangle on landscape application launch
精彩评论