如何有「複製到(我APP)」上UIDocumentInteractionController
我怎麼能在一個UIDocumentationController「複製到MyExampleApp」。 文件類型可以是任何:pdf,pptx,doc,txt ...
P.S:Objective-C代碼會很有幫助。 謝謝!
如何有「複製到(我APP)」上UIDocumentInteractionController
我怎麼能在一個UIDocumentationController「複製到MyExampleApp」。 文件類型可以是任何:pdf,pptx,doc,txt ...
P.S:Objective-C代碼會很有幫助。 謝謝!
嘗試將DocType支持添加到您的應用程序的擴展名,然後處理代表做必要的。
//AppDelegate.m
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication (NSString *)sourceApplication annotation:(id)annotation {
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *filePath = [fileURLFromLaunch path];
BOOL success = [fileManager copyItemAtPath:filePath toPath:finalFilePath error:&error];
if (success) {
NSLog(@"success");
}}
不,這不是我正在尋找的。請嘗試瞭解這個問題。 –