cocoa touch - How to set delay before taking a picture by iphone camera? -
how set delay before taking picture iphone camera? use uiimagepickercontroller. there simple way it?
call method "take pic" after delay, try this:
[self performselector:@selector(mymethodtotakethephoto) withobject:nil afterdelay:3.5]; -(void)mymethodtotakethephoto{ // take photo }
Comments
Post a Comment