The docs hint at the ability of takePicture to run multiple times in a single modal view. Particularly "This supports taking more than one picture without leaving the interface, but requires that you hide the default image picker controls."
I'd like to take 25 pictures in roughly 4 seconds, however from what I've read, there are issues with doing that in a tight loop. I'd be sleeping for ~ .16 seconds between photos and I suspect that won't be a sufficient amount of time between photos: http://stackoverflow.com/questions/1647321/iphone-taking-a-picture-programmatically
I'd use UIGetScreenImage(), but from the discussion here, it looks like that will prevent the app from getting into the store: http://stackoverflow.com/questions/1531815/takepicture-vs-uigetscreenimage
If anyone has any suggestions it would be greatly appreciated.