Tag: uidocumentinteraction

UIDocumentInteractionController“无效的scheme(null)”

我正在尝试使用UIDocumentInteractionController预览文档。 该文件是我的应用程序从网上下载的.xls文件。 我不断收到这个错误: 'UIDocumentInteractionController: invalid scheme (null). Only the file scheme is supported.' 我使用下面的代码: – (void) webServiceController:(WebServiceController *)webServiceController returnedArray:(NSMutableArray *)array { if ([webServiceController.webRequest isEqualToString: @"generateExcelFileForEmployee"]) { // start previewing the document at the current section index NSString *link = [[NSString stringWithString:array[0]] stringByReplacingOccurrencesOfString:@"AdminFunctions.php" withString:@"AdminFunctions.xls"]; link = [[[link stringByReplacingOccurrencesOfString:@"\\" withString:@""]stringByReplacingOccurrencesOfString:@"/public/sites/" withString:@"http://"]stringByReplacingOccurrencesOfString:@"\"\\\"" withString:@""]; NSLog(@"%@", link); NSData *urlData = […]