Отправить документ с диска iCloud на сервер Parse

В моем приложении мне нужно иметь возможность выбрать документ из документов Files или iCloud Drive, а затем загрузить этот документ (скорее всего PDF) на мой Parse Server. Вот то, что я имею до сих пор, но я борюсь с тем, что делать после подъема средства выбора документов... как доставить его в PFFile

UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[@"public.image"] inMode:UIDocumentPickerModeImport];

        //Call Delegate
        documentPicker.delegate = self;

        //set the Document Open Style and Present the Controller
        documentPicker.modalPresentationStyle = UIModalPresentationFormSheet;
        [self presentViewController:documentPicker animated:YES completion:nil];
        PFFile *imageFile = [//WHAT IN HERE?];

0 ответов

Другие вопросы по тегам