码迷,mamicode.com
首页 > 移动开发 > 详细

iOS让自己的App在其他应用中打开列表中显示

时间:2014-10-28 15:37:30      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:ios   打开列表   其他应用   

像百度网盘等应用,里面的文件打开时,都可以通过以下应用再打开文件。下面红色框框内的我的jpg就是我做的一个例子。因为例子没有提供Icon,所以显示的是默认icon。bubuko.com,布布扣

下面就是这例子的主要步骤和代码。


例子是一个打开jpg图片程序。


1、在项目的**info.plist文件中添加:

[html] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. <key>CFBundleDocumentTypes</key>  
  2.     <array>  
  3.         <dict>  
  4.             <key>CFBundleTypeIconFiles</key>  
  5.             <array>  
  6.                 <string>icon@2x.png</string>  
  7.                 <string>icon.png</string>  
  8.             </array>  
  9.             <key>CFBundleTypeName</key>  
  10.             <string>Molecules Structure File</string>  
  11.             <key>CFBundleTypeRole</key>  
  12.             <string>Viewer</string>  
  13.             <key>LSHandlerRank</key>  
  14.             <string>Owner</string>  
  15.             <key>LSItemContentTypes</key>  
  16.             <array>  
  17.                 <string>com.fzrong.jpg</string>  
  18.                 <string>org.gnu.gnu-zip-archive</string>  
  19.             </array>  
  20.         </dict>  
  21.     </array>  
  22.     <key>UTExportedTypeDeclarations</key>  
  23.     <array>  
  24.         <dict>  
  25.             <key>UTTypeConformsTo</key>  
  26.             <array>  
  27.                 <string>public.plain-text</string>  
  28.                 <string>public.text</string>  
  29.             </array>  
  30.             <key>UTTypeDescription</key>  
  31.             <string>Molecules Structure File</string>  
  32.             <key>UTTypeIdentifier</key>  
  33.             <string>com.fzrong.jpg</string>  
  34.             <key>UTTypeTagSpecification</key>  
  35.             <dict>  
  36.                 <key>public.filename-extension</key>  
  37.                 <string>jpg</string>  
  38.                 <key>public.mime-type</key>  
  39.                 <string>image/jpg</string>  
  40.             </dict>  
  41.         </dict>  
  42.     </array>  
这就是告诉系统,你能打开 jpg这个文件类型。


2、打开到自己的app时,要截取到过来资源的文件路径:

在Appdelegate里添加代码如下:

[objc] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation  
  2. {  
  3.     if (url != nil) {  
  4.         NSString *path = [url absoluteString];  
  5.         NSMutableString *string = [[NSMutableString alloc] initWithString:path];  
  6.         if ([path hasPrefix:@"file://"]) {  
  7.             [string replaceOccurrencesOfString:@"file://" withString:@"" options:NSCaseInsensitiveSearch  range:NSMakeRange(0, path.length)];  
  8.         }  
  9.         [self.viewController openPng:string];  
  10.           
  11.     }  
  12.       
  13.     return YES;  
  14. }  

要去掉file://文件路径的头,要不然找不到资源。

3、在自己的ViewController里打开jgp显示:

[objc] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  1. - (void)openPng:(NSString*)string  
  2. {  
  3.     UIImage *image = [[UIImage alloc] initWithContentsOfFile:string];  
  4.     float width = image.size.width;  
  5.     float height = image.size.height;  
  6.     if (width > 320) {  
  7.         height = (height/width) * 300;  
  8.         width = 300;  
  9.     }  
  10.       
  11.     CGRect frame = CGRectMake(020, width, height);  
  12.     imageView.frame = frame;  
  13.       
  14.     imageView.image = image;  
  15.       
  16. }  

打开之后的效果是这样的:

bubuko.com,布布扣

注意:这都是在真机上演示的。


这里例子咱们可以扩展,怎么打开网盘里的gif图片啊,还有其他自己自定义的格式也可以。


项目完整代码已经上传到:http://download.csdn.net/detail/totogo2010/7460929

或者github: https://github.com/schelling/openFileType


参考:

https://developer.apple.com/library/ios/qa/qa1587/_index.html 

http://stackoverflow.com/questions/20869815/open-file-from-local-file-system-with-default-application-ios


iOS让自己的App在其他应用中打开列表中显示

标签:ios   打开列表   其他应用   

原文地址:http://blog.csdn.net/zhangping871/article/details/40539373

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!