CoverFlow 用按钮代替图像
我正在将这个伟大的项目用于 iPhone 的 Cover Flow (OpenFlow)。
https://github.com/thefaj/OpenFlow/
但是,这只支持图像。例如,当我修改代码以包含按钮时,它没有获取触摸事件,因此我无法按下按钮。
有谁知道我如何拥有 coverflow 并使其可用作 UIView (带有按钮和可交互的 UIkit 内容)而不仅仅是 UIImage ?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我前段时间也遇到过同样的问题。我为此使用了 iCarousel(MIT 许可证!)
您可以在 BinPress.com 上找到源代码
iCarousel 很容易实现,可以用任何 UIView 控件“填充”。
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.
尝试将按钮置于最前面,
[view BringSubviewTpFront:button];
Try to bring the button to the front,
[view bringSubviewTpFront:button];