In my project, I need to take pictures automatically every one minute. But I can\'t find out any solutions.
This is the code which I implemented but it doesn\'t work
Maybe a little late but the piker function has a property takePicture
double delayInSecondse = 3.0; dispatch_time_t epopTime = dispatch_time(DISPATCH_TIME_NOW, delayInSecondse * NSEC_PER_SEC); dispatch_after(epopTime, dispatch_get_main_queue(), ^(void){ [picker takePicture]; });