When selecting current position in the rich text editor, there is this warning:
Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
When adding CG_NUMERICS_SHOW_BACKTRACE Environment variable to the scheme, we can see that _UITextMagnifiedLoupeView which is Apples private API for Showing the magnified loop when changing caret position, causes this break in layoutSubviews.
This is just a warning, but it causes some performance issues, the only thing we can do in here is either call with Apple and do some swizzling magic, or swizzle magically on our own to try fix this :D
@danielsaidi do we actually care or is this freezer? :D
When selecting current position in the rich text editor, there is this warning:
Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
When adding
CG_NUMERICS_SHOW_BACKTRACE
Environment variable to the scheme, we can see that_UITextMagnifiedLoupeView
which is Apples private API for Showing the magnified loop when changing caret position, causes this break in layoutSubviews.I strongly believe we do nothing wrong and this is Apple bug
This is just a warning, but it causes some performance issues, the only thing we can do in here is either call with Apple and do some swizzling magic, or swizzle magically on our own to try fix this :D
@danielsaidi do we actually care or is this freezer? :D