zoukankan      html  css  js  c++  java
  • iOS UIRefreshControl-刷新tableView

    override func viewDidLoad() {
            super.viewDidLoad()
            refreshControl = UIRefreshControl.init()
            refreshControl?.attributedTitle = NSAttributedString.init(string: "努力加载....", attributes: [NSForegroundColorAttributeName:UIColor.yellow, NSFontAttributeName:UIFont.systemFont(ofSize: 20), NSTextEffectAttributeName: NSTextEffectLetterpressStyle])
            refreshControl?.tintColor = UIColor.yellow
            refreshControl?.backgroundColor = UIColor.init(patternImage: UIImage.init(imageLiteralResourceName: "1.jpg"))
            refreshControl?.addTarget(self, action: #selector(LPCTableVC.testRefresh), for: UIControlEvents.valueChanged)
            tableView.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
        }
        func testRefresh() {
            NSLog("刷新")
            //结束刷新
            refreshControl?.endRefreshing()
        }

  • 相关阅读:
    java作业总结1
    Java课程学习感想
    java第二阶段作业小结
    java第一阶段作业小结
    Java课程总结
    第二周期作业总结
    第一次作业周期总结
    Java第二阶段作业总结
    Java第一阶段作业总结
    java最后一阶段总结
  • 原文地址:https://www.cnblogs.com/yujidewu/p/6101967.html
Copyright © 2011-2022 走看看