When you load up xcode it tells what the recent files/projects you worked on are. Where does Xcode store this information?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I believe they’re stored in
com.apple.Xcode NSRecentXCProjectDocuments. This is part of the “Expert” preferences, which are not exposed through the GUI.This may vary slightly based on what you are trying to do. For example,
$ defaults write com.apple.Xcode NSRecentDocumentsLimit 20will show 20 recent projects (rather than the default 10).As for accessing the list itself, the only thing I could find was the following code in the Quick Search Box source code (though it looks like it might require an external library):