[SWIFT]在ios7中呈现具有透明度的模态视图控制器

时间:2015-02-17 22:12:24

标签: swift ios7

我试图在我的应用程序中呈现模式视图控制器,背景透明,它适用于ios8,但由于某些原因在ios7中背景变为灰色并且不显示透明度,我已经将alpha设置为storyboard中的视图以下是我使用的代码:

    let storyboard = UIStoryboard(name: "PopUpStoryboard", bundle: nil);
    let vc = storyboard.instantiateViewControllerWithIdentifier("PopUpQuestionController") as PopUpQuestionController;
    vc.currentEvent = self.currentEvent
    vc.questionMode = "text"
    self.modalPresentationStyle = UIModalPresentationStyle.CurrentContext
    self.presentViewController(vc, animated: true, completion: nil);

ios8中的结果:

enter image description here

和ios 7中的结果:

enter image description here

任何人都可以帮助我吗?

0 个答案:

没有答案