views:

18

answers:

1

Hi,

I am using http://www.chaosinmotion.com/flowcover.m and would like to know how I may display a label for each image when it is displayed in the flowcover (the current image)

Thanks,

:)

+1  A: 

I suggest reading the documentation before posting questions. With no familiarity with this library at all, in 30 seconds, I downloaded the source, found the docs, and skimmed until I found - (void)flowCover:(FlowCoverView *)view didSelect:(int)cover, which appears to be a delegate method.

At a glance, it looks like you're not meant to know what's front and center, only what the user picked (which may very well mean "what just became front and center"). Test it and see.

Joshua Nozzi
That only triggers the method if the user selects the image. Which is not what I need
Lily
Then you're probably going to have to delve into the source code and extend it to report the front-most item as the documentation does not mention any such notification is provided.
Joshua Nozzi