現(xiàn)象: 設(shè)置push
viewController.hidesBottomBarWhenPushed = YES;
當push出新界面時,導(dǎo)航欄右側(cè)會有毛玻璃的效果,view打開后即會恢復(fù)正常,
暫時找到的解決方法時,
在能獲取到key window的地方,設(shè)置backgroundColor,這樣即會消除右側(cè)毛玻璃
[UIApplication sharedApplication].keywindow.backgroundColor = [UIColor whiteColor];