How to set delay before taking a picture by iphone c开发者_C百科amera? I use UIImagePickerController. Is there some simple way for it?
call a method with your "take the pic" after a delay, try this:
[self performSelector:@selector(myMethodToTakeThePhoto) withObject:nil afterDelay:3.5];
-(void)myMethodToTakeThePhoto{
// take the photo
}
精彩评论