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.