Has anyone been able to call `NSLocalizedString` w...
# multiplatform
v
Has anyone been able to call
NSLocalizedString
within the ios target from a KMP project?
a
yes, we use it here - https://github.com/icerockdev/moko-resources/blob/74b4dc3390489f14fb25a024a66b054e1fde5061/resources/src/iosMain/kotlin/dev/icerock/moko/resources/desc/Utils.kt#L18
NSLocalizedString
it is just preprocessor definition. it replaced by compiler to call
localizedStringForKey
💯 1
v
That looks interesting.