これは私のコードです:
NSOpenPanel *panel = [NSOpenPanel openPanel];
[panel setAllowsMultipleSelection:YES];
[panel runModal];
NSInteger count = [[panel URLs] count];
for (int i=0; i<count; i++) {
NSLog(@"%@", [[panel URLs] objectAtIndex:i]);
}
しかし、出力は次のようなものですfile://localhost/Volumes/....
選択したファイル(Cat.jpgなど)のベース名を取得するにはどうすればよいですか?