如何知道应用支持哪种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中将应用程序显示为选项?
由于
答案 0 :(得分:2)
我找到了解决这个问题的方法。但是,我认为这不是一个很好的。
在测试期间,我发现当离开文件扩展名时,UIDocumentInteractionController
将根据我指定的UTI
显示应用程序。将文件发送到目标应用程序时,不会发生任何事情。我总结说我需要一个文件扩展名来进行最终发送。
我的方法是在将文件发送到目标应用程序之前修改URL
属性,并为其提供相同的文件,但目标应用程序接受文件扩展名。然而,我的申请刚刚崩溃。我用Instruments对它进行了分析,发现问题是由于UIDocumentInteractionController
过度释放了一些代理对象。
我还看到最后的overrelease在一个名为_invalidate
UIDocumentInteractionController(Private)
类的方法被调用,它释放了该对象。
由于类别无法被其他类别覆盖,我决定使用我自己的实现调用类别方法,检查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
的委托方法,该方法用于交换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]);
}
这个解决方案有效,但在我看来这是一个肮脏的黑客,必须有一个更好的解决方案。