用于 Ipad 浏览图像列表的 UI 控件
我决定使用 monotouch 来开发一个应用程序,该应用程序可以浏览 rss feed 并显示图像网格,就像浏览设备上实际的图片库一样。
我的问题是,我不知道(即使在广泛的谷歌搜索之后)我应该使用什么控件。
我希望能够在 UITableView 中浏览我真正想要的图像列表,但所有文档都坚持认为 UITableView 只有 1 列:(
我不想在这个阶段对卸载和加载资源的要求变得太复杂图像会从屏幕上消失,但如果有人对我启动此操作以及我应该进行哪些控制有任何指示,我将不胜感激
。显示它可以显示的内容并自动允许滑动到屏幕外的其他内容?)
非常感谢
理查德
I have made the decision to use monotouch to develop an application that browses an rss feed and displays a grid of images much like browsing the picture library actually on the device.
My issue is that I have NO idea (even after extensive googling) as to what control I should use.
I want to be able to swish through the list of images which I really wanted in a UITableView BUT all documentation insists that UITableView only has 1 column :(
I dont want to get too complicated with my requirement at this stage for unloading and loading resource as the images go off screen but if anyone has any pointers for me in starting this and what control I should go for I would be grateful.
My initial thoughts are perhaps having n images in every cell and the cells are very wide (would an ipad only display those it can and automatically allow swiping to the others off screen?)
Many thanks
Richard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UItableView 只有一列,但您可以将 UITableViewCell 定义为您自己的类,并允许任意数量的元素穿过它。
至于是否有东西离开屏幕,这完全取决于您的应用程序。
查看 iTunes 上的开发人员视频,尤其是开始的表格视图部分,这应该会为您指明正确的方向
The UItableView is only one column, but you can define the UITableViewCell to your own class and allow any number of elements across it.
As to whether something goes off the screen, that is entirely down to your application.
Have a look at the developer videos on iTunes, especially the beginning table views sections, that should point you in the right way