https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
j

Jose Garcia

05/26/2022, 8:07 AM
Why can’t I find the following class in Kotlin/Native? I thought all of the Swift Foundation library was included with KMP; https://developer.apple.com/documentation/foundation/operationqueue
a

Alexey Glushkov

05/26/2022, 8:23 AM
Hi, are you trying to access it in ios part of your shared lib? It should work sth like that:
j

Jose Garcia

05/26/2022, 8:34 AM
I forgot to prepend it with NS, hehe thanks!
r

russhwolf

05/26/2022, 1:20 PM
I sometimes like to browse the apple dev docs in Obj-C mode instead of Swift mode to try and avoid this confusion.
j

Jose Garcia

05/26/2022, 4:16 PM
Good stuff, Russel. Thank you!