我像这样创建UIView:
UIView *someView = [[UIView alloc] initWithFrame:self.view.frame];
//Make some things with someView
[self.view.superview inserSubview:someView belowSubview:self.view];
当我旋转设备时 - self.view更改方向,但某些视图在后台 - 而不是。我错过了什么?
答案 0 :(得分:0)
someView不是处理设备旋转的视图控制器的一部分。 你可以试试这个:
UIView *someView = [[UIView alloc] initWithFrame:self.view.frame];
[self.view addSubview:someView];
[self.view sendSubviewToBack:someView]