I want to open camera with animation effect, so that it should appear that camera is opening in the parent screen only. I am using camera overlay screen and on click event of button in parent screen,camera overlay screen is opening,in camera overlay screen there is a cancel button to close the camera,so while closing the camera again I need to show the animation effect that it should appear that now camera is closed in the same parent scree. I have tried kCATransitionMoveIn but not fully satisfied,if any once has better solution please help me.

CATransition * contentAnimation = [CATransition animation];
    contentAnimation.type = kCATransitionMoveIn;
    contentAnimation.subtype = kCATransitionFromBottom;
    contentAnimation.duration = 1.0;
    contentAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut];
    [[self.view layer] addAnimation:contentAnimation forKey:kCATransition];
    //self.view.hidden = YES;
    [CATransaction commit];
    // Show the scanner overlay
    [self presentModalViewController:overlayController.parentPicker animated:TRUE];
link|improve this question

May be below URL help you.. [See this][1] [1]: stackoverflow.com/questions/3138502/… – MinuMaster Oct 31 '11 at 8:08
feedback

3 Answers

This could be somewhat tidious but try out downloading ZBar SDK which is .dmg file. and double click it. You will find Examples Folder. In that you will find 4 apps. Try out that app in Device only. You will find amazing CAMERA open with animation effect.

sorry for such answer...

link|improve this answer
feedback

This Link also helped me http://jonathanhui.com/ios-camera-image when I was working on the camera project.

link|improve this answer
feedback
up vote 0 down vote accepted

I have resolved the issue and I have taken the ZBar SDK example as a reference and this link1 and link2 also helped me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.