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
Due to how the Objective C runtime works, if an object is in the middle of deallocation, a weak store should not be attempted becase the object’s weak table is already freed. Instead, I am now using a proxy objects, which is set as an associated object in question. If the object is in the middle of deallocation, the associated object will release at the end of deallocation.
Not sure yet how to fix.
The text was updated successfully, but these errors were encountered: