84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
欢迎选择我的课程,让我们一起见证您的进步~~
这个东西叫 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 的话。。我也可以撸一个。。(容我晚些时候填坑)