Как получить доступ к панели вкладок в UIDocumentPickerViewController? Я хочу изменить высоту панели вкладок или скрыть текст / изображение
Или что не так с моим решением, я имею в виду, почему изображение и текст накладываются друг на друга?
![enter image description here](https://i.stack.imgur.com/jVwPR.png)
static NSString * const kSILDocumentTypes = @"public.data";
- (void)presentDocumentPickerViewController {
UIDocumentPickerViewController *documentPickerViewController = [[ UIDocumentPickerViewController alloc]
initWithDocumentTypes:@[kSILDocumentTypes]
inMode:UIDocumentPickerModeImport];
[self presentDocumentPickerViewController:documentPickerViewController];
}
- (void)presentDocumentPickerViewController:(SILDocumentPickerViewController *)documentPickerViewController {
documentPickerViewController.delegate = self;
documentPickerViewController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:documentPickerViewController animated:YES completion:nil];
}