7

目前我的应用程序界面上有一个按钮可以打开文件,这是我的打开代码:

在我的 app.h 中:

- (IBAction)selectFile:(id)sender;

在我的 app.m 中:

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {

}

- (IBAction)selectFile:(id)sender {

    NSOpenPanel *openPanel  = [NSOpenPanel openPanel];
    NSArray *fileTypes = [NSArray arrayWithObjects:@"xml",nil];

    NSInteger result  = [openPanel runModalForDirectory:NSHomeDirectory() file:nil types:fileTypes ];

    if(result == NSOKButton){

        NSString * input =  [openPanel filename];

如何编辑我的代码以允许使用应用程序图标拖放打开?
注意:我编辑了 .plist 文件并为“xml”添加了一行,但它改变了任何内容,当我的文件被拖放到图标上时出现错误。
注 2:我将“文件 - > 打开...”链接到 selectFile:这指的是我的代码
注 3:我的应用程序不是基于文档的应用程序


谢谢你的帮助!
米斯基亚

4

2 回答 2

16

首先在 .plist 文件中为 CFBundleDocumentTypes 添加适当的扩展名。

接下来实现以下委托:
- application:openFile: (一个文件被丢弃)
- application:openFiles: (多个文件被丢弃)

参考:
NSApplicationDelegate 协议参考

回复评论:

一步一步的例子,希望它让一切都清楚:)

添加到 .plist 文件:

 <key>CFBundleDocumentTypes</key>
        <array>
            <dict>
                <key>CFBundleTypeExtensions</key>
                <array>
                    <string>xml</string>
                </array>
                <key>CFBundleTypeIconFile</key>
                <string>application.icns</string>
                <key>CFBundleTypeMIMETypes</key>
                <array>
                    <string>text/xml</string>
                </array>
                <key>CFBundleTypeName</key>
                <string>XML File</string>
                <key>CFBundleTypeRole</key>
                <string>Viewer</string>
                <key>LSIsAppleDefaultForType</key>
                <true/>
            </dict>
        </array>

添加到 ...AppDelegate.h

- (BOOL)processFile:(NSString *)file;
- (IBAction)openFileManually:(id)sender;

添加到 ...AppDelegate.m

- (IBAction)openFileManually:(id)sender;
{
    NSOpenPanel *openPanel  = [NSOpenPanel openPanel];
    NSArray *fileTypes = [NSArray arrayWithObjects:@"xml",nil];
    NSInteger result  = [openPanel runModalForDirectory:NSHomeDirectory() file:nil types:fileTypes ];
    if(result == NSOKButton){
        [self processFile:[openPanel filename]];
    }
}

- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename
{
    return [self processFile:filename];
}

- (BOOL)processFile:(NSString *)file
{
    NSLog(@"The following file has been dropped or selected: %@",file);
    // Process file here
    return  YES; // Return YES when file processed succesfull, else return NO.
}
于 2011-03-16T21:15:48.503 回答
0

快速而肮脏的解决方案:

Cocoa:拖放任何文件类型

在 Xcode 版本 11.4 (11E146) catalina 10.15.4 (19E266) 下测试

于 2020-04-01T10:17:02.793 回答