SwiftKickMobile/SwiftMessages
Auf GitHub ansehenwindow being accessed from background thread when dequeueNext is called
Open
#535 geöffnet am 14. Nov. 2023
bughelp wanted
Repository-Metriken
- Stars
- (7.449 Stars)
- PR-Merge-Metriken
- (Keine gemergten PRs in 30 T)
Beschreibung
dequeueNext is being called from a background queue here.
This in turn does a check to the isOrphaned property here.
The isOrphaned property does a check to the view.window property here.
This triggers an XCode warning with "UIView.window must be used from main thread only". This can lead to possible crashes.