Camera and photo library together in iOS - ios

I am creating an app in which I need to show both camera and photo library together in same screen. top half of the screen will have the camera and bottom half of the screen will have photo library. See the screenshot.
Also please let me know if it is feasible or not and if it is possible then please help me how to do that.
Thank you.

you tried the instagram SDK? Has a method that works for me

Related

iOS: UIImagePicker or AVCam for this functionality

I am looking for a way to add a custom button on camera preview and don't know where to go. Just like the iOS native camera, on the left of the capture button, you can click on it and access photo library. How can we add a button to the camera preview view? Would anyone be kind enough to give some directions? Thanks in advance.
Take a look at UIImagePickerController's cameraOverlayView. This lets you lay your own interface on top of the default camera interface.
Check out this sample project. It shows the preview of the camera in a custom UIView and uses AVCaptureSession for the management of the video preview. You can add whatever you want in the custom UIView as you like.

iOS: Capture FRONT Camera with Overlay View with Video Background

I'm new to the community =)
My question...
Is it possible to have an overlay screen of the front camera while having a full screen video background. Sorry if it sounds a bit confusing, it might be easier if you see the mock-up at this link.
Mock-up: Mock-up Link
Building for the iPhone using either Obj C or Xcode.
Any reference or guidance would be much appreciated.
Thanks
Robert

Multiple camera on single viewController with different overlays

How can i show UIImagePickerController "Camera" on two different UIView at the same time?
we all are aware about the opening imagePicker and even open that inside of some view with frame but my requirement is i have two UIView and inside of them i need to show camera both of that UIView has different overlays for camera i can show camera on one of them at a time but don't know how to open same camera output on both can anyone please help me!
Thanks in Advance :)
You should try AVFoundation.
Apple has provided a best example for that..
You can download the example from here...
This will help you....

Creating a Camera View similar to Instagram, Path, or Photovine

I haven't worked with the iPhone's camera much.
I've done basic apps using UIImagePickerViewController but that only shows the basic camera functions.
What are apps like Instagram, Path, or Photovine using to make the cooler layout with more options?
Thanks for the help!
They are essentially using a cameraOverlayView over the UIIImagePicker.
You can read about it here.
And get an apples sample code here. http://goo.gl/RPwtD

Scanning without taking pictures in BlackBerry OS 6

I'm working on a project that requires me to use the video control. My goal is to turn the camera on and use it to scan some words. I don't want to take pictures out of it. I would need to capture the image automatically when the image is focused instead of having the users taking pictures by pressing the button. What I have in mind right now is there is a state where your camera auto-focuses, if I can somehow catch that state and take the snapshot, then I don't have to ask the user to take a picture. I have no idea how to achieve this. Can anyone shed some light on me please?
If any of you have used something like a barcode scanner like barcode assistant or the canadian tire app, I want something like that.
Thank you in advance!
You'll find this BlackBerry Developer Documentation article useful:
Take a picture in a BlackBerry device application

Resources