Контроль обновления iOS 13.1 не обновляется - PullRequest
0 голосов
/ 04 октября 2019

У меня следующий простой код для установки UIRefreshControl с UIScrollView

private func pullToRefershSetup () {
    let normalAttributes: [NSAttributedString.Key: Any] = [
        .font:AppTheme.Fonts.font(type: .Medium, size: 14),
        NSAttributedString.Key.foregroundColor:AppTheme.Colors.ColorsOfApp.colorPrimaryDark.color,

    ]

    refreshControl
        .attributedTitle = NSAttributedString(string: "Pull to refersh", attributes: normalAttributes)

    refreshControl.tintColor = AppTheme.Colors.ColorsOfApp.colorAccent.color
    self.scrollView.refreshControl = refreshControl
    refreshControl.addTarget(self, action: #selector(callAPIToFetchData), for: .valueChanged)
}

Это работает до iOS 13.1, даже работает в iOS 13 Simulator, но не работает в iOS13.1

Кто-нибудь сталкивался с этой проблемой? Пожалуйста, помогите мне

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...