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
@levi It looks like someone is using KVO to observe UIScrollView.contentOffset and the scroll view is trying to send KVO notifications from inside dealloc and messaging a dangling pointer. Looking into the code a bit, it seems likely that since the object argument to FBKVOController block is strong, the mechanism is trying to retain the scroll view, which is prohibited from within dealloc.
Using KVO to observe UIKit properties is not supported.
If you have to keep doing this, ensure that the KVO observation is torn down before the scroll view enters dealloc. One workaround is to pass retainObserved:YES into FBKVOController.
ASRunLoopQueue.mm line 270
-[ASRunLoopQueue processQueue]
The text was updated successfully, but these errors were encountered: