Skip to content

Instantly share code, notes, and snippets.

@calderaro
Created July 14, 2022 21:22
Show Gist options
  • Save calderaro/1612e3b5f241d341d008575ed9ebe76f to your computer and use it in GitHub Desktop.
Save calderaro/1612e3b5f241d341d008575ed9ebe76f to your computer and use it in GitHub Desktop.
Obtain bundle identifier programmatically
ios swift 3+:
```
let bundleID = Bundle.main.bundleIdentifier
```
ios objective-c:
NSString *bundleIdentifier = [[NSBundle mainBundle] bundleIdentifier];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment