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.
Solution
Oh!? Sometimes things get so weird between these two beautiful languages. I found the solution:
So simple right? :)
For more information, please check the related proposal (SE-0271).