Is there any way to test the iPhone camera in the simulator without having to deploy on a device? This seems awfully tedious.

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

There are a number of device specific features that you have to test on the device, but it's no harder than using the simulator. Just build a debug target for the device and leave it attached to the computer.

The camera, the actual phone, the accelerometer, real GPS data, the compass, vibration, etc all require the actual device.

-t

link|improve this answer
2  
That kinda sucks, what if you need to test on an earlier version of the OS set in your deployment target, guess you'd be screwed then. – marchinram Dec 15 '10 at 4:03
feedback

I wrote a replacement view to use in debug mode. It implements the same API and makes the same delegate callbacks. In my case I made it return a random image from my test set. Pretty trivial to write.

link|improve this answer
4  
Can you share the code? :) – Tudorizer Feb 18 '11 at 14:19
And, you could make it to return an image from the iSight Camera :) – WTP'-- May 4 '11 at 12:40
1  
Yes St3fan would you mind sharing? – Inturbidus Sep 11 '11 at 19:29
1  
@St3fan: Yes please share :-) – Besi Oct 20 '11 at 10:42
feedback

Nope (unless they've added a way to do it in 3.2, haven't checked yet).

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.