0

I'm creating a single column photo app with dynamic heights. Right now I'm using a tableview but I'm far from done. While I'm in the early stage of development & still new to objective -c, I'm wondering which would be the best solution for this app. I don't know why, but something tells me that a table view isn't the way to go.

Should I use a Table or Collection view & why?

Thanks in advance

4

2 回答 2

2

表格视图非常强大,你几乎可以用它做任何事情。当涉及到 Collection View 时,它是 TableView 的高级形式(就易于设计而言),您有很多布局选项。

但可悲的是,Collection View 需要 iOS 6+,所以如果您需要在您的应用程序中支持 iOS 5。表视图是唯一的方法。或者你有很多第三方框架,比如在 iOS5 中工作的集合视图。

于 2013-09-06T02:55:17.057 回答
1

似乎都可以使用。要记住的一件事是在 UITableView 上管理编辑模式会更容易一些,因此如果您需要,最好坚持使用它。

另一方面,如果您想扩展相同的 UIViewController 以在 iPad 上工作并在网格中显示图像,那么 UICollectionView 可能是您的答案。

于 2013-09-06T02:51:30.743 回答