Exc_bad_instruction

Any suggestion where I could start looking? Everything was working fine until I made a couple view changes which i have since returned to original but I get this error:

Screen Shot 2020-06-29 at 9.08.29 AM

Eureka I solved the problem. I had a textmodifier that had a frame with incorrect parameters even though it built just fine…

this is what was causing the error:

.frame(width: .infinity, height: 8, alignment: .center)

this is what I changed it to:

.frame(minWidth: 0, maxWidth: .infinity, alignment: .center)

Thanks alot

1 Like

Thank you for sharing your update @flmcl! Glad to know you were able to solve it. :smile:

1 Like

This topic was automatically closed after 166 days. New replies are no longer allowed.