1

I want to use the camera in one of my future projects. Now I'm wondering if it is possible to have the camera on a normal view embedded into the navigation controller. Or is it always modal?

If it is possible how would you implement that?

testing
  • 19,681
  • 50
  • 236
  • 417

1 Answers1

1

I don’t think you can push a UIImagePickerController, since Apple does not allow stacking of navigation bars!

Perhaps you could add it to a subview like this:

[self.view addSubview:self.imagePickerController.view];
ipalibowhyte
  • 1,553
  • 2
  • 22
  • 34