我正在使用它来初始化文档视图。
NSString * filename = [NSString stringWithFormat:@"Document_%d",key];
NSURL *URL = [[NSBundle mainBundle] URLForResource:filename withExtension:@"pdf"];
if (URL) {
// Initialize Document Interaction Controller
self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:URL];
[self.documentInteractionController setUTI:@"com.adobe.pdf"];
// Configure Document Interaction Controller
[self.documentInteractionController setDelegate:self];
// Preview PDF
[self.documentInteractionController presentPreviewAnimated:YES];
}
我的问题是文章太高了。我怎样才能降低一点?感谢您的阅读。