ibooks 喜欢轮播视图
我想使用轮播类型的视图创建和应用程序,其中图像按行和列排列,其中列数是固定的,但行数不同。当用户单击图像时,它会打开详细视图。 我最初的方法是使用表格视图,将一个单元格作为一行,但这里棘手的部分是计算列,我是通过标记视图来完成的。 我的方法是正确的还是有其他更好的方法。
I want to create and app with carousel kind of view, with images in rows and columns, where number of columns are fixed, but number of rows varies. when user clicks on an image it opens up a detailed view.
My initial approach is to used tableview, with one cell as a row, but here tricky part is calculating the column, which I am doing by tagging the views.
Is my approach is right or is there is any other better way of doing it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以使用
AQGridView
来处理这个问题https://github.com/AlanQuatermain/AQGridView
它的工作原理与
UITableView
非常相似,都使用dataSource
和delegate
You could use
AQGridView
to handle this I thinkhttps://github.com/AlanQuatermain/AQGridView
It works very similar to
UITableView
by using adataSource
anddelegate