UIDocumentPickerViewController - перекрывающийся текст и изображение в панели вкладок - PullRequest
0 голосов
/ 10 апреля 2020

Как получить доступ к панели вкладок в UIDocumentPickerViewController? Я хочу изменить высоту панели вкладок или скрыть текст / изображение

Или что не так с моим решением, я имею в виду, почему изображение и текст накладываются друг на друга?

enter image description here

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];
}
...