How can I access the Bundle Seed ID/Team ID/App Identifier Prefix string programmatically? (These are all the same thing as far as I can tell).
I am using the UICKe
In swift3: (Based on @Hiron solution)
Simply one line:
var appIdentifierPrefix = Bundle.main.infoDictionary!["AppIdentifierPrefix"] as! String
Given that in your Info.plist, add the following key-value property:
key: AppIdentifierPrefix
string-value: $(AppIdentifierPrefix)