how to access any document files from device to our application for uploading to server and downloading from server ,save in device not in App can any one help me how to do this? i searched from many days, but i didn't get any solution to how to get files from the device.
UIDocumentInteractionController *pdfPicker = [[UIDocumentInteractionController alloc] init];
pdfPicker.delegate = self; // ensure you set the delegate so when a PDF is chosen the right method can be called
[self presentViewController:pdfPicker animated:YES completion:nil];
i also implemented this code but its crashing the app. please help me, thanks in Advance.