UIRefreshControl在iOS 17上不显示(收到屏幕外刷新警告)

wvyml7n5  于 12个月前  发布在  iOS
关注(0)|答案(1)|浏览(86)

我试着运行一个简单的代码,它在iOS 14/15/16上运行得很好,但现在在iOS 17上使用Xcode 15时,这不再起作用了。我将在下面附上一个代码,显示一个带有UIRefreshControl的表视图,它将在获取请求之前运行beginRefreshing(),但是刷新控件在iOS 17上不再显示了,我得到了这个警告,说刷新控件收到了屏幕外的刷新。
x1c 0d1x的数据
下面是使用DispatchQueue.main.asyncAfter显示简单表格视图的模拟获取请求的代码。如果您尝试在iOS 17上运行它,则刷新控件不会显示在模拟获取请求之前。

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
    private let tableView = UITableView()
    private let cellIdentifier = "cellIdentifier"
    private let data = ["Cell 1", "Cell 2"]
    private let refreshControl = UIRefreshControl()

    override func viewDidLoad() {
        super.viewDidLoad()
        configureTableView()
        
        refreshControl.beginRefreshing()
        
        // Simulate fetch request
        DispatchQueue.main.asyncAfter(deadline: .now() + 1, execute: {
            self.setDataSource()
        })
    }
    
    private func configureTableView() {
        tableView.register(UITableViewCell.self, forCellReuseIdentifier: cellIdentifier)
        refreshControl.addTarget(self, action: #selector(refreshData), for: .valueChanged)
        tableView.refreshControl = refreshControl
        
        tableView.frame = view.bounds
        tableView.autoresizingMask = [.flexibleWidth, .flexibleHeight]
        view.addSubview(tableView)
    }
    
    private func setDataSource() {
        tableView.dataSource = self
        tableView.reloadData()
        refreshControl.endRefreshing()
    }
    
    // MARK: - UITableViewDataSource
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return data.count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
        cell.textLabel?.text = data[indexPath.row]
        return cell
    }
    
    // MARK: - Refresh Control Action
    
    @objc private func refreshData() {
        DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
            self.refreshControl.endRefreshing()
            self.tableView.reloadData()
        }
    }
}

字符串
你知道有什么修复方法吗?即使在iOS 17上也能以同样的方式运行,而不使用viewDidAppearviewWillAppear方法,因为我希望每个视图生命周期只调用一次fetch?

enxuqcxy

enxuqcxy1#

在iOS 17中,苹果引入了新的生命周期方法:视图出现,它还具有iOS 13+向后兼容性。
应该在viewIsAppearing https://developer.apple.com/documentation/uikit/uiviewcontroller/4195485-viewisappearing中调用refreshing()

相关问题