Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bundle creator OS Type code ??? in Xcode 4

I just realized that Bundle Creator OS Type code in my iOS app's Info.plist value is ????? in Xcode 4. What is the value supposed to be?

like image 981
moon Avatar asked Mar 23 '11 05:03

moon


2 Answers

It's used to identify your application. You don't have to change it for an iPhone application.

Take a look at these links:

  • Information Property List Key Reference

  • Mac Creator and File Type Codes

  • Data Type Registration

like image 106
Nevin Avatar answered Oct 12 '22 11:10

Nevin


It's not really used anymore. It's a holdover from the Classic Mac OS days when it was a datapoint used mainly to determine what apps could create or edit or read file types. Back then you had to register them with Apple. I don't think they even provide that service any more. OS X and some apps might still use it in rare cases under the hood but its very legacy. As you can imagine, the severely limited possible permutations made it untenable long term.

UTIs are the preferred approach now. The system then uses a combination of these and file extensions and magic numbers. Though on ios that may not be true as much as OSX.

like image 21
uchuugaka Avatar answered Oct 12 '22 11:10

uchuugaka