NSDocument to hold a complete folder?

给你一囗甜甜゛ 提交于 2019-12-20 09:44:47

问题


I ask sorry if this argument has already been covered, but after some research i found nothing precise.

I need to make a document based application, where the document is actually not a single file but a structured collection of files, in a directory. The windows will show a pdf contained in the folder, with a specific filename, and enrich it with informations from the other files in the folder. I cannot use pdf annotations to achieve this, i really need to keep the files separated from the pdf.

What's the best approach to achieve this? All the sample code i found use a single file..


回答1:


You can use NSFileWrapper as a package directory in document-based applications.

In your application Info.plist file, state that your document type is a package or bundle (key LSTypeIsPackage with value YES).

In your NSDocument subclass, implement the following methods for reading and writing. In this example, I’m assuming the corresponding model instance variables are pdfData and signatureBitmapData, which are stored in the package directory under MainDocument.pdf and SignatureBitmap.png, respectively.

- (BOOL)readFromFileWrapper:(NSFileWrapper *)dirWrapper
                     ofType:(NSString *)typeName
                      error:(NSError **)outError
{

    NSFileWrapper *wrapper;
    NSData *data;

    wrapper = [[dirWrapper fileWrappers] objectForKey:@"MainDocument.pdf"];
    data = [wrapper regularFileContents];
    self.pdfData = data;

    wrapper = [[dirWrapper fileWrappers] objectForKey:@"SignatureBitmap.png"];
    data = [wrapper regularFileContents];
    self.signatureBitmapData = data;

    …

    return YES;
}

- (NSFileWrapper *)fileWrapperOfType:(NSString *)typeName
                               error:(NSError **)outError
{
    NSFileWrapper *dirWrapper = [[[NSFileWrapper alloc]
        initDirectoryWithFileWrappers:nil] autorelease];

    [dirWrapper addRegularFileWithContents:self.pdfData
        preferredFilename:@"MainDocument.pdf"];

    [dirWrapper addRegularFileWithContents:self.signatureBitmapData
        preferredFilename:@"SignatureBitmap.png"];

    …

    return dirWrapper;
}

From the user perspective, the package directory shows up in Finder as if it were a single file, much like Xcode .xcodeproj directories or application bundles.



来源:https://stackoverflow.com/questions/5665560/nsdocument-to-hold-a-complete-folder

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!