Ivan Vučica
Ivan Vučica

Reputation: 9679

Which NSCoder does .pbxproj format use?

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?

Upvotes: 0

Views: 280

Answers (1)

mipadi
mipadi

Reputation: 410742

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.

Upvotes: 2

Related Questions