I am creating a cover flow on iPad using AFOpenFlow library.
I am also providing a camera button in the view. If user captures any image and comes back to the previous view, the cover flow should be refreshed displaying the new image in it.
Any ideas how to do that?
The link provided by Alastair Stuart is nice but if you have implemented coverflow already then you can reset/refresh the coverflow by calling as follows:
if you want to refresh or set the coverflow to index 0 you can use following:
[(AFOpenFlowView*)coverFlow setSelectedCover:0 ];if you want to reset coverflow use:
it will delete all the images in cover flow.