1

I want to launch iPhone Camera from web page. I googled around and came to know that it is possible through URL Schema

I have doubt that after registering URL Schema, how should i submit to AppStore and Are there any built-in URL Schemas for Camera

Please tell me.

abc
  • 13
  • 1
  • 1
  • 4

2 Answers2

4

There is no url scheme for Camera. Read Here apple documentation. There are 6 standard schemes : Mail, Phone, Text, Map, YouTube, iTunes.

Kostiantyn Koval
  • 8,407
  • 1
  • 45
  • 58
0

If you want to submit your own app, you can implement a custom URL scheme to launch your app. Your app can then access the camera using standard APIs. If you would like to upload the photo and bring it back to your webpage, the URL scheme can take an extra parameter: another URL your app should load after it uploads the photo. See this section of the iOS Application Programming Guide for information about how to implement a custom URL scheme.

jtbandes
  • 115,675
  • 35
  • 233
  • 266