modify existing iPhone camera screen - iphone

All I want is redesign default camera screen. Default camera screen has toolBar on bottom of the screen. and toolBar has capture button in middle and cancel button in left.
cancel button on left down corner should be replace with info button custom Image and right down corner should have photo library button. And All other functionality will be remain same.
How Can i achieve this without fully customization using overlay propery ?? Will This design be approve by apple ??

You can't modify other apps in the phone. If you want to make your own camera app, do so. UIImagePickerController is the place to start:
http://developer.apple.com/library/IOS/documentation/UIKit/Reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

Related

How to create a translucent layer on click of button, which would slide up for iphone

Hi I want to create a layer of the type in the image below.
The layer (with Capture mode and Shutter speed) slides up when I click on the setting button.
I am unable to figure out what should I do do create something like this. Also want to have the similar translucency in the layer as well as in the buttons on it also.
On click on the same button again, the layer(with Capture mode and Shutter speed) disappears, leaving what was there on the screen before (the camera view and the lower bar with the camera capture button, and the two setting buttons)
Please any suggestions are much appreciated.
Thanks
Maybe you can create a UIView and place every button you need there, and place it below the screen size. then when you click the setting button you call core animation to move the view up, click setting again to move it down.

Slide view while touching button - IOS

I'm trying to implement a view that includes social buttons.In normal state, it will be partially hide and only the "Opciones" button and the upper line is shown. This view will be shown when user touches button "Opciones" (touch gesture), then it will unhide and be shown using sliding effect until the final position that is included in the attached image.
I'm wondering which kind of control and animation I have to use.
Many thanks.

Working with iphone camera

I am using UIPickerView controller for displaying the camera on iphone screen for click event of button.
I want to add one button Draw Line on the camera screen and also i want to add an event with that Draw Line Button means if i will click on Draw Line button a one line will be draw on the screen of camera.
So pls reply me is it possible? and if yes then pls give me your reply with some examples or links.
This would be possible. You can achieve this with cameraOverlayView in UIImagePickerController.

Tabbar Application with camera

I want to implement camera in a Tab Bar application. I have been able to make the camera appear but there is no capture button to capture the image. How can I customize the camera view so that the capture button appears?
Thank you.
Normally you should get an image like this. Clicking on the camera icon will take the photo.
Arn't you getting like this? Then check your UIImagePickerController and its delegates.

custom slide to reveal toolbar

i want to do a custom toolbar, something like the slide to unlock of android phones. In idle state, the user can see a button of the bottom left of the page. the user would then tap it, drag towards the right. When the user reaches the right end, the toolbar will then 'lock'. Buttons would be located at the toolbar.
I'm think of using a customview and touchmoved functions, but what I don't know how is how to make the view move with the touch, and how to actually lock the bar.
Everytime you move your finger the touchmoved function is called. In the touchmoved function you have to redraw the whole view or just set a new frame for this view. It pretty simple as you already know how to detect touches and react on them.