我通过点击一个Button来调用我的ModalViewController。我希望这个ModalViewController具有如下所示的半透明背景:
当我使用[self.view setBackgroundColor:[UIColor clearColor]];它给了我一个黑色背景:
答案 0 :(得分:-1)
[modalView.view setBackgroundColor:[UIColor clearColor]];
或者如果你想降低不透明度
[modalView.view setalpha:0.4]; //range is from 0(transparent) to 1(opaque)