LB.
LB.

Reputation: 14112

CoverFlow with Buttons instead of Images

I am using this great project for Cover Flow (OpenFlow) for the iPhone.

https://github.com/thefaj/OpenFlow/

However, this only supports images. When I modified the code to include a button for example, it is not getting the touch event, so therefore I am not able to press the button.

Does anyone have any idea on how I can have coverflow and also make it usable as a UIView (with buttons and interactable UIkit stuff) and not just an UIImage?

Thanks

Upvotes: 0

Views: 912

Answers (2)

MadMaxAPP
MadMaxAPP

Reputation: 1065

I had the same problem some time ago. I used iCarousel for that (MIT License!)

You can find the source on BinPress.com

iCarousel is easy to implement an can be "filled" with any UIView Control.

Upvotes: 1

WrightsCS
WrightsCS

Reputation: 50697

Try to bring the button to the front, [view bringSubviewTpFront:button];

Upvotes: 0

Related Questions