I'm wondering if there is a way to upload a file from an app home directly using a UIWebview that has a HTML form with a file upload input.
I'm loading this from a UIWebview:
<form action="test.php" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>
but the iPhone asks if I'd like to "Take a photo" or "choose existing". What I'd rather do is choose a doc or image that is in the local directory of the App.
Is this possible?
Thanks!