0

I want to call the System Camera from my app by "openURL", is it possible?

I have read the document About Apple URL Schemes. It mentions Main, Phone .etc, but do not mention Camera. As I can open the Setting Application by "UIApplicationOpenSettingsURLString" which is also not mentioned, so I not sure the camera can not be open like that the same way.

itenyh
  • 1,921
  • 2
  • 23
  • 38

1 Answers1

1

I don't think there are any URL Schemes for the camera app since Apple is providing an API instead to show the camera from within your own application by using UIImagePickerController, especially UIImagePickerControllerSourceTypeCamera.

If you are just looking to open a camera you can use this API. You can find an example to use this class here: Example Implementation.

Community
  • 1
  • 1
dehlen
  • 7,325
  • 4
  • 43
  • 71