如何在应用程序中实现模仿 iPhone 默认图库的图片库?
我想在我的 iPhone 应用程序中实现一个图像库,其中仅包含从应用程序内部选择的设备库中的图像或从应用程序内部拍摄的图片。请建议任何简单的方法来做到这一点。
I want to implement an image gallery inside my iPhone app which will only have those images from device gallery that have been either selected from inside the app or pictures taken from inside the app. Please advice on any simple methods to do so.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试 Three20,它是完成此类任务的一个非常好的框架。
这是您可以使用的一些示例代码。
在界面中:
然后在viewDidLoad中:
然后在buttonClick中:
这就是我实现此目的的方法,不要忘记为图像视图和UIImagePicker设置@property和@synthesis。
You can try Three20, it's a very nice framework for doing such a task.
Here is some piece of sample code you can use.
In interface :
Then in viewDidLoad :
Then in buttonClick :
This is how i achieve this, don't forget to set @property and @synthesis for image-view and UIImagePicker.
尝试 Three20 或 AQGridView。
Try Three20 or AQGridView.
您可以将 UIScrollView 与 paging=YES 一起使用。
You can use UIScrollView with paging=YES.