如何避免coverflow中图像的镜像效果
我已经从链接下载了一个 coverflow 示例
我需要开流效果,但不需要图像的镜像效果。是否可以做到。IKImageFlowView 类中有可用的 API 吗?
任何帮助将不胜感激。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我已经从链接下载了一个 coverflow 示例
我需要开流效果,但不需要图像的镜像效果。是否可以做到。IKImageFlowView 类中有可用的 API 吗?
任何帮助将不胜感激。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
没有可用于
IKImageFlowView
的 API。这是一个私人课程。这就是为什么这篇博文的标题是“做我们不应该做的事情”。如果您查看博客文章中的项目,您会发现一个逆向工程的IKImageFlowView.h
。这就是现有的尽可能多的信息。您可以按照博客文章中所述使用class-dump
并查看是否可以找到IKImageFlowViewDelegate
协议(如果有的话)(此类似乎接受委托)。这可能允许您配置它。请注意,Apple 可能随时更改此类。
您最好使用第三方实现,例如 MBCoverFlowView 或 OpenFlow。
There is no API available for
IKImageFlowView
. It is a private class. That's why the blog post is titled "doing things we shouldn't." If you look at the project in the blog post, you will find a reverse-engineeredIKImageFlowView.h
. That's as much information as is available. You can useclass-dump
as noted in the blog post and see if you can find theIKImageFlowViewDelegate
protocol if there is one (this class appears to take a delegate). That might allow you to configure it.Note that Apple may change this class at any time.
You are probably better off using a third-party implementation like MBCoverFlowView or OpenFlow.