Commit ccbd6502 authored by pete谢兆麟's avatar pete谢兆麟

Merge branch 'develop' of http://gitlab.galaxy-immi.com/mobile-group/galaxy-iOS into develop

parents df53d118 a5c6ebf6
...@@ -666,6 +666,16 @@ extension YHH5WebViewVC { ...@@ -666,6 +666,16 @@ extension YHH5WebViewVC {
// supportFullScreenSyn("1") // supportFullScreenSyn("1")
} }
gk_navigationBar.isHidden = isHideNavigationBar gk_navigationBar.isHidden = isHideNavigationBar
if isHideNavigationBar {
webview.snp.remakeConstraints { make in
make.edges.equalToSuperview()
}
} else if !isFullScreenFlag {
webview.snp.remakeConstraints { make in
make.top.equalToSuperview().offset(k_Height_NavigationtBarAndStatuBar)
make.left.right.bottom.equalToSuperview()
}
}
} }
//是否支持通屏 //是否支持通屏
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment