如何将moda视图的背景设置为半透明?

时间:2012-01-19 14:13:08

标签: iphone cocoa-touch ipad uiviewcontroller modalviewcontroller

我通过点击一个Button来调用我的ModalViewController。我希望这个ModalViewController具有如下所示的半透明背景:

enter image description here

当我使用[self.view setBackgroundColor:[UIColor clearColor]];它给了我一个黑色背景:

enter image description here

1 个答案:

答案 0 :(得分:-1)

    [modalView.view setBackgroundColor:[UIColor clearColor]];

或者如果你想降低不透明度

 [modalView.view setalpha:0.4]; //range is from 0(transparent) to 1(opaque)