Hello! I was experiencing a similar crash as everyone else in the thread as well, in which I also have an UIStackView inside a reusable cell. For us we noticed that it could be tracked back to a rogue UIStackView with the distribution set to .fillProportionally.
This seems to cause the view to generate layout inconsistencies that every now and then would result in an invalid state that would crash when trying to remove the subviews. Simply using a different distribution (while keeping same layout) was enough to prevent the crash from happening. I have now run about 10000 tests and all were successful.