iPhone方向改变视角

  • 本文关键字:改变 方向 iPhone iphone
  • 更新时间 :
  • 英文 :


我想根据方向以编程方式设置 UILable 的位置。但是当我回到肖像时,它不起作用。

这是我的代码:

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
    if([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationPortrait || [[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationPortraitUpsideDown)
    {
        lblUserName.frame = CGRectMake(20, 200, 280, 44); 
        lblPassword.frame = CGRectMake(20, 246, 280, 44); 
    }
    else
    {
        lblUserName.frame = CGRectMake(20, 220, 280, 44); 
        lblPassword.frame = CGRectMake(20, 266, 280, 44); 
    }
}

有两种可能性。可以通过编程方式设置标签。并检查 - (BOOL(应该自动旋转到界面方向:(UIInterfaceOrientation(interfaceOrientation{} 中的方向条件

方法。否则,您可以使用自动调整蒙版大小。

尝试使用这个IF条件:

 if ( UIInterfaceOrientationIsPortrait(toInterfaceOrientation))
 { 
 } 
 else {}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
//write code here
return YES;
}
- (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
//write code here
}

使用这两种方法在旋转设备时设置标签。

最新更新