Reputation: 3394
Is there a way to get the Bundle ID from Info.plist at runtime? Something like [[UIApplication sharedApplication] bundleIdentifier] would be great.
Upvotes: 20
Views: 3611
Reputation: 2774
Swift 3
Bundle.main.bundleIdentifier
Upvotes: 1
[[NSBundle mainBundle] bundleIdentifier]
Upvotes: 34