我在我的代码文件中放置了一个 pdf。我希望它在 iBooks 中打开,在研究时我发现了这个:
NSString *stringURL = @"itms-books:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
NSString *stringURL = @"itms-bookss:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
我如何使用这个或其他什么方式可以在 iBook 中打开我的 PDF 文件?问候