I have a weird problem. I submitted my app to be published on the app store, but they said me that I have to provide an open recent menu.
I know how to do it programmatically, but it doesn't work in my project because I deleted the File menu previously. I tried to create again this entry, but the instruction:
[[NSDocumentController sharedDocumentController] noteNewRecentDocumentURL:[NSURL fileURLWithPath:@"/pathToMyFolder"]];
does nothing.
I tried to use it in a new project and it works fine, but not in my current project.
I suppose I have lost my internal dependences inside the xml in my nib file.
Anybody knows how to rebuild them after creating the file menu entry?
Thank you.
NOTE: I work with Xcode 4, and my app is not a document based application.