Swift - UIRefreshControl下拉时,刷新时分别使用不同的描述文字
前一篇文章(Swift - 下拉刷新数据的功能实现(使用UIRefreshControl))讲到使用 UIRefreshControl 可以很方便的实现下拉刷新的功能,通过 attributedTitle 属性可以设置下拉时的描述文字。
但如果想要根据状态显示不同的文字,比如下拉的时候显示“下拉刷新数据”,刷新数据时显示“数据加载中......”。那么就需要对 attributedTitle 进行动态设置了。
效果图如下:
实现方式:
(1)在数据刷新响应方法中将 attributedTitle 修改成“数据加载中......”
(2)在视图开始滚动的方法 scrollViewWillBeginDragging 中,将 attributedTitle 改回“下拉刷新数据”
代码如下:
(为更好的看到效果,模拟网络请求,这里使用NSTimer延时两秒生成数据)
import UIKit class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource { //新闻列表 @IBOutlet weak var newsTableView: UITableView! //新闻数组集合 var dataArray:[HanggeArticle] = [HanggeArticle]() //拉刷新控制器 var refreshControl = UIRefreshControl() var timer: NSTimer! override func viewDidLoad() { super.viewDidLoad() self.automaticallyAdjustsScrollViewInsets = false //添加刷新 refreshControl.addTarget(self, action: "refreshData", forControlEvents: UIControlEvents.ValueChanged) refreshControl.attributedTitle = NSAttributedString(string: "下拉刷新数据") newsTableView.addSubview(refreshControl) refreshData() } //滚动视图开始拖动 func scrollViewWillBeginDragging(scrollView: UIScrollView) { if !refreshControl.refreshing { refreshControl.attributedTitle = NSAttributedString(string: "下拉刷新数据") } } // 刷新数据 func refreshData() { refreshControl.attributedTitle = NSAttributedString(string: "数据加载中......") timer = NSTimer.scheduledTimerWithTimeInterval(2.0, target: self, selector: "timeOut", userInfo: nil, repeats: true) } //计时器时间到 func timeOut() { //移除老数据 self.dataArray.removeAll() //随机添加5条新数据(时间是当前时间) for _ in 0..<5 { let atricle = HanggeArticle(title: "新闻标题\(Int(arc4random()%1000))", createDate: NSDate()) self.dataArray.append(atricle) } self.newsTableView.reloadData() self.refreshControl.endRefreshing() timer.invalidate() timer = nil } // 返回记录数 func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return dataArray.count; } // 返回单元格内容 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "myCell") //设置单元格标题 let atricle: HanggeArticle = dataArray[indexPath.row] as HanggeArticle cell.textLabel?.text = atricle.title //设置单元格副标题 let dateFormatter = NSDateFormatter() dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss" let str = dateFormatter.stringFromDate(atricle.createDate) cell.detailTextLabel?.text = str return cell; } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } } //新闻结构体 struct HanggeArticle { var title:String var createDate:NSDate }
是的...后来发现原因了..不好意思啦..这个网站真不错
站长在吗??这个出不了效果啊。。。