swift2.x UIRefreshControl() 下拉刷新

前端之家收集整理的这篇文章主要介绍了swift2.x UIRefreshControl() 下拉刷新前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例如对UIwebview添加下拉刷新

声明下拉刷新控件

var refreshControl =UIRefreshControl()

//webView添加下拉刷新

refreshControl.addTarget(self,action:"refreshPage",forControlEvents: .ValueChanged)

refreshControl.attributedTitle =NSAttributedString(string:"Refresh")

webview.scrollView.addSubview(refreshControl)//@H_502_103@关键代码

注意: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

猜你在找的Swift相关文章