objective-c - UIDocumentInteractionController,没有文件扩展名,只有 UTI

标签 objective-c ios cocoa-touch uti

如何在知道应用程序支持哪个 UTI 的情况下将文件发送到其他应用程序?假设文件没有文件扩展名,但我碰巧知道文件的 UTI。

我尝试了以下方法:

// target is a NSURL with the location of the extension less file on the system
// knownUTI is a NSString containing the UTI of the file 
    UIDocumentInteractionController* dic = [UIDocumentInteractionController interactionControllerWithURL:target];  
    [dic retain];

    dic.delegate = self;
    dic.UTI = knownUTI; 
    [dic presentOpenInMenuFromRect:CGRectZero inView:superController.view animated:YES]

它显示支持的应用程序,但是,如果我选择它,它不会切换应用程序。代表调用

- (void)documentInteractionController:(UIDocumentInteractionController *)controller willBeginSendingToApplication:(NSString *)application

但是

- (void)documentInteractionController:(UIDocumentInteractionController *)controller didEndSendingToApplication:(NSString *)application

永远不会被调用,应用程序也永远不会切换。

目标应用程序导出其 UTI 如下:

    <key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeIconFiles</key>
            <array/>
            <key>CFBundleTypeName</key>
            <string>Migration DocType</string>
            <key>CFBundleTypeRol</key>
            <string>Shell</string>
            <key>LSHandlerRank</key>
            <string>Owner</string>
            <key>LSItemContentTypes</key>
            <array>
                <string>com.mycomp.customstring</string>
            </array>
        </dict>
    </array>

...

<key>UTExportedTypeDeclarations</key>
    <array>
        <dict>
            <key>UTTypeConformsTo</key>
            <array>
                <string>public.data</string>
            </array>
            <key>UTTypeDescription</key>
            <string>My custom UTI</string>
            <key>UTTypeIdentifier</key>
            <string>com.mycomp.customstring</string>
        </dict>
    </array>

由于这不起作用,我还尝试添加自定义扩展。尽管如此,它不会以这种方式工作。将自定义扩展名添加到文件时,我将其移交给 DocumentInteractionController 并且它可以正常工作。但是,应用程序列表会显示支持相同文件扩展名的所有其他应用程序,而不管我提供的 UTI 类型如何。

假设我在 2 个不同的应用程序中声明了 2 个 UTI:

App1 with UTI1: com.mycomp.a  with extension .abc
App2 with UTI2: com.mycomp.b  with extension .abc

将文件交给 DocumentInteractionController 并将 UTI 设置为 com.mycomp.a 时,它还会将 App2 显示为能够处理该文件的可能应用程序。

我按以下方式定义了一个带扩展名的 UTI:

<key>UTExportedTypeDeclarations</key>
    <array>
        <dict>
            <key>UTTypeConformsTo</key>
            <array>
                <string>public.data</string>
            </array>
            <key>UTTypeDescription</key>
            <string>My UTI Type</string>
            <key>UTTypeIdentifier</key>
            <string>com.mycomp.a</string>
            <key>UTTypeTagSpecification</key>
            <dict>
                <key>public.filename-extension</key>
                <string>abc</string>
                <key>public.mime-type</key>
                <string>application/abc</string>
            </dict>
        </dict>
    </array>

非常感谢您的帮助,我有点卡住了。 因此,问题又来了:如何将文件发送到具有已知 UTI 的应用程序,或者没有扩展名,或者与我不想在 DocumentInteractionController 中将应用程序显示为选项的其他文件具有相同的扩展名?

谢谢

最佳答案

我找到了解决这个问题的方法。但是,我认为这不是一个很好的选择。

在测试过程中,我发现当保留文件扩展名时,UIDocumentInteractionController 将根据我指定的 UTI 显示应用程序。将文件发送到目标应用程序时,什么也不会发生。我得出结论,我需要一个文件扩展名来进行最后的发送。

我的方法是在将文件发送到目标应用程序之前修改 URL 属性,并向其提供相同的文件,但具有目标应用程序接受的文件扩展名。尽管如此,我的应用程序还是崩溃了。我用 Instruments 分析了它,发现问题是由于 UIDocumentInteractionController 过度释放了一些代理对象。 我还看到最终的过度释放是在 UIDocumentInteractionController(Private) 类别的名为 _invalidate 的方法中被调用的,该方法释放了对象。

由于类别不能被其他类别覆盖,我决定用我自己的实现来调整类别方法,检查 URL 是否包含文件扩展名,并将调用重定向到原始 _invalidate 方法或者什么都不做。

下面的代码展示了我所做的:

#include <objc/runtime.h>

@interface UIDocumentInteractionController(InvalidationRedirect)

-(void)_invalidateMY;
+(void)load;
void Swizzle(Class c, SEL orig, SEL newSEL);
@end

@implementation UIDocumentInteractionController(InvalidationRedirect)

void Swizzle(Class c, SEL orig, SEL newSEL)
{
    Method origMethod = class_getInstanceMethod(c, orig);
    Method newMethod = class_getInstanceMethod(c, newSEL);
    if(class_addMethod(c, orig, method_getImplementation(newMethod), method_getTypeEncoding(newMethod)))
        class_replaceMethod(c, newSEL, method_getImplementation(origMethod), method_getTypeEncoding(origMethod));
    else
        method_exchangeImplementations(origMethod, newMethod);
}

-(void)_invalidateMY{
    @synchronized(self) {
        if(![[[[self.URL lastPathComponent] componentsSeparatedByString:@"."] lastObject] isEqualToString:@"extension"]) {
            [self _invalidateMY];
        }
    }
}

+(void)load
{
    Swizzle([UIDocumentInteractionController class], @selector(_invalidate), @selector(_invalidateMY));
}

@end

此代码将原始的 _invalidate 方法与 _invalidateMY 进行交换,导致每次调用 _invalidate 时都会调用 _invalidateMY 并且反之亦然。

以下代码显示了我如何处理 UIDocumentInteractionController:

  // create a file without extension
  NSString *fileName = @"myFile";

  NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

  NSString *documentsDirectory = [paths objectAtIndex:0];

  NSURL* target = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/%@", documentsDirectory, fileName]];

  if([[@"THIS IS JUST A TEST STRING" dataUsingEncoding:NSUTF8StringEncoding] writeToURL:target atomically:NO]) {
      NSLog(@"file written successfully");
  }else {
      NSLog(@"Error.. file writing failed");
  }

  UIDocumentInteractionController* dic = [UIDocumentInteractionController interactionControllerWithURL:target];
  [dic retain];
  dic.delegate = self;


  // set the UTI to the known UTI we want to list applications for
  dic.UTI = @"com.mycomp.a";

  [dic presentOpenInMenuFromRect:CGRectZero inView:superController.view animated:YES];

此代码显示了 UIDocumentInteractionController 的委托(delegate)方法,该方法交换 URL:

- (void)documentInteractionController:(UIDocumentInteractionController *)controller willBeginSendingToApplication:(NSString *)application
{
    NSFileManager *fileMgr = [NSFileManager defaultManager];
    NSError *error;
    NSURL* newTarget = [NSURL URLWithString:[NSString stringWithFormat:@"%@.extension", controller.URL]];
    // rename file to file with extension
    if (![fileMgr moveItemAtURL:controller.URL toURL:newTarget error:&error] && error) {
        NSLog(@"Error moving file: %@", [error localizedDescription]);
    }
    @synchronized(controller) {
        //exchange URL with URL+extension
        controller.URL = newTarget; //<- this results in calling _invalidate
    }
    NSLog(@"%@", [NSString stringWithContentsOfURL:controller.URL encoding:NSUTF8StringEncoding error:nil]);
}

这个解决方案有效,但在我看来这是一个肮脏的 hack,必须有更好的解决方案。

关于objective-c - UIDocumentInteractionController,没有文件扩展名,只有 UTI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8479917/

相关文章:

objective-c - 文件系统的通知已更改?

iphone - 将 html 文本添加到我的 UIWebView

ios - 对 NSArray 的 JSON 响应以输出到 UITableView

ios - Swift - 如何实现登录/ session (无代码)

iphone - 不调用 textViewDidEndEditing

objective-c - 如何将 NSData 加载到 AVPlayerItem 中?

iphone - iPhone 模拟器上 Three20 链接错误

ios - Xcode 6.0.1 取消按钮展开 segue

iphone - 哪个网站最适合 IOS、Cocoa、Objective-C 的 wiki?

android - Xamarin.Forms:iOS 11 布局呈现在缺口后面