karhm
(Karim)
1
I have a library that is written almost entirely in Objective-C and that library need serval resources (Core Data models), according to SE-0271:
SwiftPM will generate an internal static extension on Bundle for each module it compiles:
extension Bundle {
/// The bundle associated with the current Swift module.
static let module: Bundle = { ... }()
}
How can I access the module bundle from Objective-C?
Thanks in advance.
karhm
(Karim)
3
probably I need new glasses.