例如对UIwebview添加下拉刷新
声明下拉刷新控件
var refreshControl =UIRefreshControl()
//给webView添加下拉刷新
refreshControl.addTarget(self,action:"refreshPage",forControlEvents: .ValueChanged)
refreshControl.attributedTitle =NSAttributedString(string:"Refresh")
webview.scrollView.addSubview(refreshControl)//关键代码
注意:UIWebView必须保留拖动效果,默认webview.scrollView.bounces 是true,所以不用刻意设置为true。这里是提醒不要设置为false了
//webview.scrollView.bounces = true
//下拉刷新执行的方法
func refreshPage() {
//print("Refreshing...")
webview.reload()
}
加载完成停止刷新调用:
refreshControl.endRefreshing()
更多下拉上拉刷新请参考:http://www.wtoutiao.com/p/3famTu3.html 原文链接:https://www.f2er.com/swift/322872.html