嗨,我是 ios 开发的新手...
我在仅支持景观的项目上创建了。为此我像这样使用
但是当我要打印视图大小时
NSLog(@"%f--%f",self.view.frame.size.width,self.view.frame.size.height);
在日志中给出
768.000000--1024.000000
代替
1024.000000--768.000000
我还添加了一个代码
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
BOOL res=((interfaceOrientation == UIInterfaceOrientationLandscapeLeft)|| (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
return res;
}
我不知道如何解决这个问题。请帮助我