I have an ipad app that has a page inside it subclassed from TTThumbsViewController
( which is a class in the Three20
framework) , this page is simply a gallery of thumbnail photos, when one thumbnail is selected the corresponding photo opens in full screen layout, however, when我将画廊视图从横向旋转到纵向,反之亦然,缩略图表视图根据新方向正确更新其布局,但我想让此更新与Explore Flickr iPad 应用程序中的更新一样流畅。非常感谢你。
问问题
534 次
2 回答
4
我正在使用GMGridView来解决类似的问题。
许多人认为这是最好的第三方网格视图类。它很容易实现——就像你如何实现 UITableView 一样。我喜欢它,它实际上支持广泛的功能,包括您需要的功能。
于 2012-10-10T07:48:25.487 回答
1
我没有使用 Three20 框架,所以我不确定它写得如何等等......
但是,使用 aUICollectionView
会使这变得容易得多。
您仍然可以获得相同的缩略图布局(开箱即用)并打开它们以查看全屏图像,并且旋转动画处理得非常好。
它的工作方式几乎与UITableView
作品一模一样,因此实施起来不会花费太长时间。
也都是原生的。
于 2012-10-03T12:58:21.073 回答