Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently I use NSTimer to repeat taking photos, it'll show on the screen.

This is the problem:

I need to execute my app. & taking photos at the same time. So, does there any way to take photos at background?

I'll appreciate for any opinions~

share|improve this question

1 Answer

up vote 0 down vote accepted

Look into NSThread's detachNewThreadSelector:toTarget:withObject: method.

For example:

[NSThread detachNewThreadSelector:@selector(takePictures) toTarget:self withObject:nil];

Somewhere else in your class, you'd have:

- (void) takePictures {
   // insert code to take pictures...
}
share|improve this answer
thanks a lot,I'll try if it works~ – Gary Sep 1 '09 at 5:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.