This question already has an answer here:
Ios creating simple camera overlay in Xcode how?
(1 answer)
Closed 5 years ago.
I am new to iphone development, and I want to make an application that will use the camera view as the background. Then I would like to put certain image overlays over the camera view. How would I go about doing this?
Use cameraOverlayView property when using UIImagePickerControllerSourceTypeCamera. This property is not available when using other sourceTypes though.
[picker setCameraOverlayView: someTransparentView];
Related
This question already has answers here:
How to set all the backgrounds transparent so that the home screen could be seen?
(2 answers)
Closed 9 years ago.
I ask this question after seeing apps like Reminders or Safari's tab view using this.
As you can see there is a translucency between the app and the home screen. Is there anyway to achieve this in iOS 7? Is it a private api?
No such luck sadly - it's a private API.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Turn on torch/flash on iPhone 4
i make app for camera open it's turn on in flash light..
not open camera in video mode?
so if any method provide by ios to turn on flash light in did load method?
Thanks in advance....
Duplicate of Turn on torch/flash on iPhone
Thanks #progrmr for notifying.
This question already has answers here:
How to record a video in iOS
(4 answers)
Closed 9 years ago.
I want to record a video from imagepicker controller delegate. I am getting capture image but i am not getting video mode record.
Thanks and Regards.
checkout Apple's AVCAmDemo on their developer centers for custom video recording and adding custom overlay. < http://developer.apple.com/videos/wwdc/2010/>
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
how to create iphone's wobbling icon effect?
I'm trying to figure out how to make objects "shake" like when you hold down your finger on apps in the homescreen, so you can move them around and put them in folders.
How can I achieve this?
The Three20 Launcher has this exact function. It's an opensource iOS framework, you could download it, run a demo project and replicate or use their implementation.
This question already has answers here:
Closed 11 years ago.
Possible Duplicates:
Is there a good tutorial for implementing an augmented reality iPhone application?
Augmented Reality for IPhone
Hi all, If I have the long and lat of points I'm just wondering how hard and how I go about overlaying them on a camera input on the iPhone? Like how the Layar app does it.
Thanks in advance
The cameraOverlayView property of the UIImagePickerController is what you're looking for.