在ImagePicker之后,refreshControl扩展不显示微调器

时间:2017-04-13 00:19:28

标签: ios swift uitableview extension-methods uirefreshcontrol

我编写了一个扩展,允许我在UIViewController中的常规tableView上显示refreshControl。下面的代码完全适用于viewDidLoad()以及pull to refresh。

扩展:

extension UITableView
{
    func findRefreshControl () -> UIRefreshControl?
    {
        for view in subviews
        {
            if view is UIRefreshControl
            {
                print("The refresh control: \(view)")
                return view as? UIRefreshControl
            }
        }
        return nil
    }

    func addRefreshControlWith(sender: UIViewController, action: Selector, view: UIView)
    {
        guard findRefreshControl() == nil else { return }

        let refreshControl = UIRefreshControl()
        refreshControl.addTarget(sender, action: action, for: UIControlEvents.valueChanged)

        view.addSubview(refreshControl)
    }

    func showRefreshControlWith(attributedTitle: String? = nil)
    {
        findRefreshControl()?.attributedTitle = NSAttributedString(string: attributedTitle!)
        findRefreshControl()?.beginRefreshing()
    }

    func hideRefreshControl ()
    {
        findRefreshControl()?.endRefreshing()
    }
}

ViewController中的被调用者:(通过观察事件触发)

private func showLoader()
    {
        tableView.showRefreshControlWith(attributedTitle: "Loading Profile".localized())
    }

    private func hideLoader()
    {
        tableView.hideRefreshControl()
    }

观察员:

_ = presenter.profilePictureUploadingPending.skip(first: 1).observeNext { _ in self.showLoader() }
_ = presenter.profilePictureUploaded.skip(first: 1).observeNext { _ in self.hideLoader() }

然而,当我进入UIImagePicker以在我的应用程序中上传照片并返回到viewController时,它应该再次触发旋转过程,直到照片上传成功。

我调试了我的代码并启动了方法,但是微调器从视图层次结构子视图中消失了并且没有显示...

我不确定如何解决这个问题,但我非常感谢你们的任何帮助!

谢谢, 凯文。

1 个答案:

答案 0 :(得分:0)

使用以下解决方案解决:

private func showLoader()
    {
        DispatchQueue.global(qos: .default).async {
            DispatchQueue.main.async {
                self.tableView.contentOffset.x = 1
                self.tableView.contentOffset.y = -81
                self.tableView.showRefreshControlWith(attributedTitle: "LOADING_PROFILE".localized())
            }
        }
    }