按钮使用 AnimatedButton
,
背景图片是一个动画,
几张图片,作为字符串,
放在网上的 json 文件里面
一导航,换页面,
AnimatedButton 就消失
lazy var downBtn: AnimatedButton = {
let btn = AnimatedButton()
btn.animationView.backgroundBehavior = .pauseAndRestore
btn.isHidden = true
return btn
}()
需要修改
backgroundBehavior
2, WebViewJavascriptBridge ( H 5 交互 )
ipad 上,gg 了
因为 js 检测平台,
错误
需要将
preferredContentMode
设置为,移动
lazy var webView: WKWebView = {
let configuration = WKWebViewConfiguration()
if #available(iOS 13.0, *) {
configuration.defaultWebpagePreferences.preferredContentMode = .mobile
}
let w = WKWebView(frame: .zero, configuration: configuration)
return w
}()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)