• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Swifttableview自带的刷新控件

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

import UIKit

class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {

    let tableview = UITableView(frame: ScreenRect, style: .plain)
    let refreshControl = UIRefreshControl()
    let cell = "cell"
    var arraymutable = ["11","22","33","44","55"]
    let array = ["22","33","55","88"]
    
    
    override func viewDidLoad() {
        super.viewDidLoad()
self.view.backgroundColor = #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1)
        CreatUi()
        
        // Do any additional setup after loading the view.
    }
    
    func CreatUi(){
        
        tableview.separatorStyle = .singleLine
        tableview.backgroundColor = #colorLiteral(red: 1, green: 1, blue: 1, alpha: 1)
        tableview.delegate = self
        tableview.dataSource = self
        tableview.tableFooterView = UIView()
        tableview.refreshControl = refreshControl
        
        refreshControl.backgroundColor = UIColor.gray
        refreshControl.attributedTitle = NSAttributedString(string: "刷新一下:\(NSDate())", attributes: [NSForegroundColorAttributeName:UIColor.white])//设置文字颜色
        refreshControl.tintColor = UIColor.green //小菊花的颜色
        refreshControl.tintAdjustmentMode = .dimmed //色彩调整模式
        
        refreshControl.addTarget(self, action: #selector(addcount), for: .valueChanged)
        
        view.addSubview(tableview)
        
        
        
        
    }
    
    func addcount(){
        
        arraymutable.append(contentsOf: array)
        tableview.reloadData()
        refreshControl.endRefreshing()
        
        
    }
    override var preferredStatusBarStyle: UIStatusBarStyle{
        
        return .default
    }
    
    
    //tableview 代理
    func numberOfSections(in tableView: UITableView) -> Int {
        return 2
    }
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return arraymutable.count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        
        let celll = tableView.dequeueReusableCell(withIdentifier: cell) ?? UITableViewCell(style: .default, reuseIdentifier:cell)
        
        celll.textLabel?.text = arraymutable[indexPath.row]
        celll.textLabel?.textColor = UIColor.red
        celll.textLabel?.font = UIFont.boldSystemFont(ofSize: 20)
        
        
        return celll
        
        
    }
    
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 80
    }
    
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    

   

}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap