Implement Document Picker in swift (iOS)

后端 未结 8 2172
滥情空心
滥情空心 2020-11-30 19:54

I want to pick a file of any type(.pdf, .docs, .xlsx, .jpeg, .txt, .rtf, etc) functionality in my iOS app. On clicking on Upload button, I want my app to op

8条回答
  •  情歌与酒
    2020-11-30 20:04

    this will help you to implement download/upload functionality

    UIDocumentMenuViewController *importMenu = [[UIDocumentMenuViewController alloc] initWithDocumentTypes:@[@"public.item"] inMode:UIDocumentPickerModeImport | UIDocumentPickerModeExportToService];
    

    For more read Apple Documentation

提交回复
热议问题