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've started seeing this in the wild from an app built with Xcode 13.3:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSNull _removeFromSupernodeIfEqualTo:]: unrecognized selector sent to instance 0x1db948558'
The crash happens on this line in ASLayoutTransition.mm, which seems to suggest that _removedSubnodes is being passed an NSArray with instances of NSNull in it.
I couldn't reproduce it in debug builds so It may be an optimization issue.
Edit: Confirmed that issue doesn't happen on Xcode 13.2 builds.
The text was updated successfully, but these errors were encountered:
I've started seeing this in the wild from an app built with Xcode 13.3:
The crash happens on this line in ASLayoutTransition.mm, which seems to suggest that
_removedSubnodes
is being passed anNSArray
with instances ofNSNull
in it.I couldn't reproduce it in debug builds so It may be an optimization issue.
Edit: Confirmed that issue doesn't happen on Xcode 13.2 builds.
The text was updated successfully, but these errors were encountered: