1

我不确定为什么这段代码不起作用。有任何想法吗?iBooks 打开,但没有显示任何内容。

NSString *fileToOpen = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"ibooks"]; 
NSString *stringURL = [NSString stringWithFormat:@"itms-books:%@", fileToOpen];
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
4

1 回答 1

1

itms-books:URL 方案用于指向 iBookstore 的链接。如果您想要允许用户在 iBooks 中打开 PDF 或 ePub 文件,请查看QLPreviewControllerUIDocumentInteractionController

于 2012-12-14T01:32:12.767 回答