我已经阅读这些页面一段时间了,并且在CGRect
正确加载我的页面时遇到了一些麻烦。我了解到这是因为我在viewDidLoad
跑步后强制定位,并且我试图让CGRect
之后再次绘制。基本上,这就是我正在查看的内容:
-(void)viewDidLoad
{
//mybutton.frame = CGRectMake(...);
//...
}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
当视图出现时CGRect
,由于视图的旋转,它非常被挤压和扭曲。