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
As reported in #341, ASResponderChainEnumerator can sometimes be initiated off the main thread, which seems to be expected base on the comment here. However, a couple of main thread assertions were added recently here.
I think ideally we should remove the assertions if we know -[UIResponder nextResponder] is thread-safe, and the new Main Thread Checker might give us the answer. Otherwise, we sadly have to avoid printing the view controller if it's off main.
The text was updated successfully, but these errors were encountered:
Unfortunately -[UIView nextResponder] is implemented as [self superview] which is main-thread only, so responder chain traversing is main-thread-only. I think #348 should make things tolerable.
As reported in #341,
ASResponderChainEnumerator
can sometimes be initiated off the main thread, which seems to be expected base on the comment here. However, a couple of main thread assertions were added recently here.I think ideally we should remove the assertions if we know
-[UIResponder nextResponder]
is thread-safe, and the new Main Thread Checker might give us the answer. Otherwise, we sadly have to avoid printing the view controller if it's off main.The text was updated successfully, but these errors were encountered: