84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
欢迎选择我的课程,让我们一起见证您的进步~~
这个东西叫 UTI,Uniform Type Identifiers
可以看苹果的文档,在这里
https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/understanding_utis/understand_utis_declare/understand_utis_declare.html
1. 首先要在 info.plist 里面登记你可以打开的文件类型
然后别人选择了用你的 App 打开这个文件的话,就会调用这个 function,你实现一下:
(BOOL)application:(UIApplication)application openURL:(NSURL)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
这里面也可以打开一个 controller
差不多就是这样了,找到方向应该可以撸出来了。。如果要 demo 的话。。我也可以撸一个。。(容我晚些时候填坑)
这个东西叫 UTI,Uniform Type Identifiers
可以看苹果的文档,在这里
https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/understanding_utis/understand_utis_declare/understand_utis_declare.html
1. 首先要在 info.plist 里面登记你可以打开的文件类型
然后别人选择了用你的 App 打开这个文件的话,就会调用这个 function,你实现一下:
(BOOL)application:(UIApplication)application openURL:(NSURL)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
这里面也可以打开一个 controller
差不多就是这样了,找到方向应该可以撸出来了。。如果要 demo 的话。。我也可以撸一个。。(容我晚些时候填坑)