Huanzhi Zhang
05/07/2024, 10:02 PMobject MyClass {
var myValue:xxx
}
defined in the kotlin module. I’m trying to access it in iOS with something like`MyClass().myValue`, but my app crashes immediately with error: Thread 1: EXC_BAD_ACCESS (code=1, address=0xa8). It also crashes with the same message if I use MyClass.shared.myValue
Kirill Grouchnikov
05/08/2024, 2:01 AMMyClass.myValue
Huanzhi Zhang
05/08/2024, 4:38 AM