我正在我的 iOS 应用程序上进行文件共享,我是UIDocumentPickerViewController
. 我不知道为什么我的应用程序崩溃了。
UIDocumentPickerViewController *documentPicker = [[UIDocumentPickerViewController alloc] initWithDocumentTypes:@[@"public.image"] inMode:UIDocumentPickerModeImport];
documentPicker.delegate = self;
documentPicker.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:documentPicker animated:YES completion:nil];
应用程序在突出显示的行上崩溃。
以前有人这样做过吗?我想像下面的附件一样做