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.
Related
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 exists:
Closed 10 years ago.
Possible Duplicate:
GPS Navigation for webservice android
How to show in app navigation for finding direction and searching any place? It happens when we open google map in safari.But i want the same in app.
have a look at this tutorial..
it might just help you!!
http://www.vellios.com/2010/08/16/core-location-gps-tutorial/
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Can we play .swf files in iphone using Objective C
I want to implement the splash screen on my app. I have an "SWF" file. How to implement the splash screen using this file? Please tell me. Any 3rd party sdk or any framework or library for the same? please give me any idea for this functionality.
Swf is not supported by iOS. You can take the image sequence and use it in place of a swf file.
You won't be able to do that because:
iPhone does not support SWF. This was one of the biggest fight in the mobile industry between Adobe and Apple
the splash screen is shown by the OS while your application is starting and not by user code
any additional animation after splash screen is against Apple's guidelines and will be rejected. See also Adding animation between splashScreen And home screen
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 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];