如何以缩略图视图启动 Three20 照片查看器?
我遵循了 Ray Wenderlich 的如何使用 Three20 照片查看器< /a> 教程非常清晰并且工作完美,我的问题如标题,如何在缩略图视图中启动 Three20 照片查看器?
我非常感谢任何指导或帮助。
I followed How To Use the Three20 Photo Viewer by Ray Wenderlich tutorial it was very clear and working perfectly, my question as the title, How to Start Three20 Photo Viewer in Thumbnail view?
I am greatly appreciative of any guidance or help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
TThumbsViewController
而不是TTPhotoViewController
。 Three20 TTCategory 示例应用程序中有一个很好的示例。TTThumbsViewController
还使用照片源,因此您无需更改那么多代码。您的照片查看器应扩展TTThumbsViewController
并实现TTThumbsViewControllerDelegate
委托函数。您可以在 viewDidLoad 函数中加载照片源:
You should use
TTThumbsViewController
instead ofTTPhotoViewController
. There's a good example of it in three20 TTCategory sample app.TTThumbsViewController
also uses a photo source, so you won't have to change that much code. Your Photo viewer should extendTTThumbsViewController
and implement theTTThumbsViewControllerDelegate
delegate functions.You can load the photo source in your viewDidLoad function: