What is the SPM Bundle.module equivalent in Objective-C

1.1k Views Asked by At

I need to access Swift Package Manager's Bundle.module equivalent in objective-c. I've tried the Bundle.module in Objective-c but no luck. This is how we access in Swift:

public let settingsURL = Bundle.module.url(forResource: “settings”, withExtension: “plist”)

Any guess what my be the equivalent in objective-c?

Here is the Apple Documentation page.

1

There are 1 best solutions below

2
On BEST ANSWER

Solution

Oh!? Sometimes things get so weird between these two beautiful languages. I found the solution:

NSString *path = [SWIFTPM_MODULE_BUNDLE pathForResource:@"settings" ofType:@"plist"];

So simple right? :)

For more information, please check the related proposal (SE-0271).

For Objective-C, the build system will add a preprocessor define called SWIFTPM_MODULE_BUNDLE which can be used to access the bundle from any .m file.