Я использую это для инициализации представления документа.
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];
}
Работает, это экран. ![enter image description here](https://i.stack.imgur.com/0Ua93.png)
Моя проблема в том, что надписи слишком высоки. Как можно немного понизить? Спасибо за внимание.