我试图在我的应用程序中呈现模式视图控制器,背景透明,它适用于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中的结果:
和ios 7中的结果:
任何人都可以帮助我吗?