Inside the .xcodeproj bundle, main project data is actually stored in the .pbxproj file. It is quite obviously an archived dictionary, but I have not been able to find which coder did Apple use? Is it a custom subclass of NSCoder, or is it documented and I didn't look hard enough?
| ||||
|
feedback
|
|
It's actually an old-style property list, so I'd say the NSDictionary facilities for writing a dictionary to a file. But there are also embedded comments, so it might be some sort of custom code. | |||||||
feedback
|