4

我在 iOS5 的主-详细信息应用程序模板的详细视图中间将 UIView 居中时遇到问题。视图的宽度小于 iPad 屏幕,无论设备方向如何,它都应始终显示在中心。这是我尝试过的......

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self.view setAutoresizingMask:(UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin)];
    [self.view.layer setBorderWidth:2.0F];
    [self.view.layer setBorderColor:[[UIColor orangeColor] CGColor]];

    // Do any additional setup after loading the view, typically from a nib.
    UIView *someContainerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 600.0F, 56.0F)];
    [someContainerView.layer setBorderWidth:2.0F];
    [someContainerView.layer setBorderColor:[[UIColor greenColor] CGColor]];
    [someContainerView setAutoresizingMask:(UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin)];
    [self.view addSubview:someContainerView];

    [self configureView];
}

这是视图的显示方式

在此处输入图像描述

有人能告诉我我在这里想念什么吗???

4

1 回答 1

2

好的,这就是我解决这个问题的方法。创建 UIView 时,我改变了这个

CGRectMake((0, 0, 660.0f, 56.0F)];

对这个……

CGRectMake((self.view.bounds.size.width-660.0F)/2, 0, 660.0f, 56.0F)];

由于我使用具有灵活左右边距的 autoresizingmask,因此我实际上需要将 UIView 定位在中心,以便通过在视图旋转时保持左右边距来自动调整大小以发挥其魔力。

于 2012-06-09T14:38:20.363 回答