我正在使用以下代码创建 UIview:
UIview* baseView = [[UIview alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
//self.view = baseView;
[self.view addSubview:baseView];
[baseView setBackgroundColor:[UIColor blackColor]];
baseView.userInteractionEnabled = YES;
baseView.alpha = 0.7;
唯一的问题是,即使我使用 mainScreen 选项将其设置为全屏,除了 UIWindow 顶部的 5 厘米线外,它仍会显示为全屏。这有什么原因吗?