antrax
07/31/2020, 8:51 AMclass TestNsObj: NSObject() {
init {
println("is frozen: $isFrozen")
}
}
fun runTest() {
val a = TestNsObj()
}
output: is frozen: true
Couldn't find any official info about that. Do I miss smth? Btw if I remove subclassing from NSObject the object is not frozen.Artyom Degtyarev [JB]
07/31/2020, 9:08 AMis frozen: false
. I got to share it with the dev team to make sure it was fixed intentionally, or something is missing here.antrax
07/31/2020, 9:11 AM