废话开篇:由于iOS沙盒机制,APP文件存储位置只能当时使用访问,这儿简略记录一下用 UIDocumentInteractionController 完成APP间传文件。
一、完成效果
两个 APP ,TestProjectA 将文件经过 UIDocumentInteractionController 来传递到 TestProjectB
二、配置工程
要想经过体系 UIDocumentInteractionController 功能展示指定的APP,那么,需要在指定的工程 Info.plist 加入如下信息:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd" >
<plist version="1.0" >
<dict>
<key> CFBundleDocumentTypes </key>
<array>
<dict>
<key> LSHandlerRank </key>
<string> Default </string>
<key> LSItemContentTypes </key>
<array>
<string> com.adobe.pdf </string>
<string> public.data </string>
<string> com.microsoft.powerpoint.ppt </string>
<string> public.item </string>
<string> com.microsoft.word.doc </string>
<string> com.adobe.pdf </string>
<string> com.microsoft.excel.xls </string>
<string> public.image </string>
<string> public.content </string>
<string> public.composite-content </string>
<string> public.archive </string>
<string> public.audio </string>
<string> public.movie </string>
</array>
</dict>
</array>
</dict>
</plist>
三、用法
1、弹出文件其他打开方式工具栏
APP-A
self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:fileUrl];
self.documentInteractionController.delegate = self;
[self.documentInteractionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
2、接收文件
APP-B
其实这儿的所说的 “接收文件” 是有些不妥的,由于,当 AppDelegate 的方法里获取到文件的沙盒途径已经是 APP-B 的了,这儿仅仅拿来就用。
- (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
if ([url.scheme isEqualToString:@"file"]) {
NSString * replaceStr;
#if TARGET_IPHONE_SIMULATOR//模拟器
replaceStr = @"file://";
#elif TARGET_OS_IPHONE//真机
replaceStr = @"file:///private";
#endif
NSString * filePathStr = [[NSString stringWithFormat:@"%@",url] stringByReplacingOccurrencesOfString:replaceStr withString:@""];
/** 事务逻辑 **/
}
return YES;
}
内容仅为简略记录,并不是什么新的技术。仅仅在开发的时候需要时权当个笔记。[抱拳][抱拳][抱拳]