我尝试添加一个像透明一样的白色视图,所以我设置了这个:
self.backgroundView = [[UIView alloc] initWithFrame:CGRectMake(0.0f,0.0f,1024.0f,768.0f)];
[self.backgroundView setBackgroundColor:[UIColor whiteColor]];
[self.backgroundView setAlpha:0.5];
[self.backgroundView setOpaque:NO];
[self.view addSubview:self.backgroundView];
slotButton.frame = CGRectMake(550, 350, 400, 100);
[backgroundView addSubview:slotButton];
}
但是当我在视图中添加一个按钮时,该按钮变得透明。我想要的是在不透明的情况下向白色透明视图添加一个按钮UIButton
。