1

im working in iphone's camera app, using UIImagePicker to launch the camera. Everything goes well, just a need to use the default controls showed in the camera app in iphone(little thumbnail from the last pic in camera roll and take photo buttons) and its animation(take and send the picture to the left bottom thumbnail), not default in UIImagePicker (cancel and take photo buttons). How i can do that? thankz :D

user448986
  • 25
  • 5

2 Answers2

1

You can't do that. What you should do is present a UIActionSheet and ask if the user wants to get a photo from the Camera or their Photo Albums.

Alexsander Akers
  • 15,967
  • 12
  • 58
  • 83
  • Ok, thankz for the info :( Then a want to show a overlayview and hide it when preview shows up. there is a delegate that catches this event maybe "willShowPreview" to hide de overlay in this moment. Thankz again – user448986 Sep 16 '10 at 15:58
  • Don't forget to mark my answer as correct by clicking the √ next to its left. – Alexsander Akers Sep 16 '10 at 19:50
0

You may try to use the cameraOverlayView property or create your own custom controls duplicating the default controls (hiding the default controls with showsCameraControls = NO).

Jesse Armand
  • 1,842
  • 3
  • 17
  • 26