-1

I am developing an small application where when user tap on a button then a prompt will open and user can select any file like the browse option and send it to server. In iOS there are any option to do that. If yes, then please help me.

Thanks.

4

2 回答 2

0

In iOS each app runs in its own sandbox and there's just no single place where user files are stored and from which to select them. You can implement file selection only from files previously put inside your particular app sandbox.

于 2012-09-25T01:57:18.453 回答
0

The filesystem is sandboxed. You have access to files that are saved via your app. Also you can access things like contacts, photo library, etc. with user permissions. There is no iOS equivalent to Mac OSX Finder.

于 2012-09-25T01:58:14.247 回答