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
{{ message }}
This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
First of all very nice library 💯
Since I implemented it in my application I have noticed constant crashes in the DefaultBubble class specifically in the method sizeToBounds. At the beginning I couldn't understand why it was crashing but later, after enabling thread sanitizer in xcode, I found that a data race was happening on the path property (multiple threads trying to read and modify the same property). Does anyone else has noticed this weird behaviour? Is there a way to fix it?
See below screenshot:
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
First of all very nice library 💯
Since I implemented it in my application I have noticed constant crashes in the
DefaultBubble
class specifically in the methodsizeToBounds
. At the beginning I couldn't understand why it was crashing but later, after enabling thread sanitizer in xcode, I found that a data race was happening on the path property (multiple threads trying to read and modify the same property). Does anyone else has noticed this weird behaviour? Is there a way to fix it?See below screenshot:
The text was updated successfully, but these errors were encountered: