iPhone Xcode Camera Integration Tutorials

Viewed 51711

I need some help. I need to integrate the camera into my app, and I want to learn about the following:

  1. I need the camera button on my view so that clicking it opens the camera view.
  2. I take a picture
  3. I need to code so that I have access to the Phone Gallery and then display a pic in another view.

Could anyone please point me in the right direction?

2 Answers

Paraphrasing the docs, dismissModalViewControllerAnimated: is deprecated from iOS6 onwards. Use dismissViewControllerAnimated:completion: instead.

Related