iPad:用于创建图库的控件
我想在 iPad 应用程序中使用图片库。图片库中应该有多个缩略图,当我单击其中一个时,将显示该图像。
我找不到任何控件来放置缩略图。
乌斯姆纳汗 苹果手机开发者
I want to use an image gallery in an iPad app. There should be multiple thumbnails in the image gallery and when I click one that image will display.
I could not find any control to place the thumbnails.
Usmna Khan
Iphone Developer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 Three20
You can use Three20
iPhone SDK 中没有可用的直接控制。您需要编写自己的代码来制作图片库或从其他资源获取代码。但我建议你应该尝试编写自己的代码。
干杯,
拉克西特
There is no direct control available in iPhone SDK. You need to write your own code to make Image Gallery or take the code from other resources. But i will suggest you should try to write your own code.
Cheers,
Raxit
图像库实际上只不过是一个表格视图,其中每行并排显示多个图像。通过使用无边框的自定义单元格,您可以创建图像网格的错觉。
An image gallery is really nothing but a tableview in which each row displays several images side by side. By using a custom cell without borders, you create the illusion of a grid of images.
我在 github 上有一个项目可以帮助您入门。它称为 KTPhotoBrowser,它的功能与您所描述的完全一样,显示缩略图网格并在点击时显示图像。该项目位于:
https://github.com/kirbyt/KTPhotoBrowser
I have a project on github that can help get you started. It's called KTPhotoBrowser and it does exactly what you describe, displays a grid of thumbnail images and displays the image when tapped. The project is at:
https://github.com/kirbyt/KTPhotoBrowser