风格视图如iphone appstore app?

时间:2013-01-03 00:40:40

标签: ios6 uicollectionview

我想设置类似于iPhone Appstore应用的视图。我不明白如何使用IB来放置视图,或者它是以编程方式放置的。

Appstore Featured View

我不知道。它们是多个集合视图放在scrollview上还是一个集合视图,带有一些自定义布局或表视图。 此外,每个集合视图都是水平滚动,顶部有Header类型,可以点击SEE ALL> ..它不能成为标题补充视图,因为它将在左侧,因为滚动是水平的而不是在顶部..这是如何完成的

由于

1 个答案:

答案 0 :(得分:2)

每一行都是自定义UITableViewCell,其中包含水平UITableView,此水平UITableView还有另一个自定义UITableViewCell来表示水平列表中的一个应用。因此,用户能够制作垂直和水平滚动。

对于header-type和See All按钮,您可以使用以下UITableViewDelegate方法:

  

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

以下文章使用UITableViewUITableViewCell包含水平UITableView的类似输出。

http://www.raywenderlich.com/4723/how-to-make-an-interface-with-horizontal-tables-like-the-pulse-news-app-part-2