Xcode / iOS /当我制作'insertSubview'时,它不是改变方向,如何修复?

时间:2014-09-07 10:53:46

标签: ios xcode uiview

我像这样创建UIView:

UIView *someView = [[UIView alloc] initWithFrame:self.view.frame];
//Make some things with someView
[self.view.superview inserSubview:someView belowSubview:self.view];

当我旋转设备时 - self.view更改方向,但某些视图在后台 - 而不是。我错过了什么?

1 个答案:

答案 0 :(得分:0)

someView不是处理设备旋转的视图控制器的一部分。 你可以试试这个:

UIView *someView = [[UIView alloc] initWithFrame:self.view.frame];
[self.view addSubview:someView];
[self.view sendSubviewToBack:someView]