推出半透明的ViewController

2016-09-05  本文已影响11人  纯阳子_

//初始化

GoodsAttrViewController  *goodsAttr = (GoodsAttrViewController*)[mainStoryboard instantiateViewControllerWithIdentifier:@"goodsAttr"];

//设置背景色(alpha:0.5)

goodsAttr.view.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];

if ([[[UIDevice currentDevice]systemVersion]floatValue]>= 8.0) {

goodsAttr.modalPresentationStyle = UIModalPresentationOverFullScreen;

} else {

self.modalPresentationStyle = UIModalPresentationFullScreen;

}

//模态出

[self.navigationController showDetailViewController:goodsAttr sender:nil];

上一篇下一篇

猜你喜欢

热点阅读