You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got this message. It is possible that the app will crash. With this solution * DispatchQueue.main.async {}
(in line 489 of the PullUpController.swift), the message will disappear.
I got this message. It is possible that the app will crash. With this solution * DispatchQueue.main.async {}
(in line 489 of the PullUpController.swift), the message will disappear.
Kind Regards,
Ton Driessen
DispatchQueue.main.async {
if animated {
pullUpController.pullUpControllerAnimate(
action: .add,
withDuration: 0.3,
animations: { [weak self] in
self?.view.layoutIfNeeded()
},
completion: { didComplete in
pullUpController.didMove(toParent: self)
completion?(didComplete)
}
)
} else {
self.view.layoutIfNeeded()
pullUpController.didMove(toParent: self)
completion?(true)
}
}
}
The text was updated successfully, but these errors were encountered: