I was taking a look at the Xcode bundle and noticed that some of the icons visible on the UI don’t exist there, eg, the Run button with the hammer on top.
Where would they be? Where else can you store resources in a Cocoa application?
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.
The developer tools use several private frameworks that are stored in
/Developer/Library/PrivateFrameworks. The resources are loaded from these frameworks. The hammer icon you mention is in:/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Versions/A/ResourcesThis is only possible because Apple creates the entire
/Developerdirectory structure with an installer, so the location of the shared frameworks is known. Normally you’d include any used frameworks in your application bundle, specifically in theContents/Frameworksfolder.