- (BOol)shouldautorotatetoInterfaceOrIEntation:(UIInterfaceOrIEntation)interfaceOrIEntation { return (interfaceOrIEntation == UIInterfaceOrIEntationLandscapeleft|| interfaceOrIEntation == UIInterfaceOrIEntationLandscapeRight);}
和
- (BOol)shouldautorotatetoInterfaceOrIEntation:(UIInterfaceOrIEntation)interfaceOrIEntation { return YES;}
它在视图上看起来很好,但尺寸确实与我的应用程序混乱.
解决方法 你永远不应该使用框架来告诉你自己的维度. frame相对于父容器视图.要查找与视图自身坐标系相关的维度,请使用bounds:self.vIEw.bounds例如,父视图可能会看到子视图的宽度= 768,高度= 1024,但旋转90度变换.这是父视图查看子视图的方式,这就是self.vIEw.frame的内容.宽度= 1024和高度= 768的子视图反映在视图如何在自己的坐标系中看到自己,即self.vIEw.bounds
总结以上是内存溢出为你收集整理的ios – 我的自我观点有错误的尺寸全部内容,希望文章能够帮你解决ios – 我的自我观点有错误的尺寸所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)