I\'ve been trying to get a window to show up asking the person to choose a file, and I eventually did. The problem is, Xcode complains that the method I\'m using is deprecated.
As far as I know, you can use the runModal method like shown below:
runModal
NSOpenPanel *openPanel = [[NSOpenPanel alloc] init]; if ([openPanel runModal] == NSOKButton) { NSString *selectedFileName = [openPanel filename]; }