如何获得类似以下Apple Music播放列表概述的列表视图?

时间:2016-08-23 06:29:24

标签: ios swift xcode listview apple-music

我在Swift中搜索Listview,如下所示:

通缉ListView: -

enter image description here

我想要一个ListVIew,它在背景中有一张图片,在图片上有一个文字。当我点击那张照片时,我想去下一个网站。

我是如何获得这些标题的?

标题示例: -

enter image description here

有人可以帮助我吗?

2 个答案:

答案 0 :(得分:1)

  • 使用customTableCell实现UITableView
  • 在customTableCell类上绘制自定义设计,如需求图片中所示。 (设置背景图像。设置左对齐标签。)
  • 实施didSelectRowAtIndexPath委托方法以转到下一个网站。
  • 将单元格的accessoryType设置为UITableViewCellAccessoryType.DisclosureIndicator
  • 自定义标题: - 设置from sys import argv script,filename = argv print "We're delete the file %r" %filename print "If you want to stop ctrl+c (^c)" print "Please hit enter to continue" raw_input(">_") print "Opening file..." filen = open(filename,'w') print "Truncating your file...." filen.truncate() print "now in your file %r" %filen print "Writing time write something to your file" line = raw_input("?") print "write in progress..." filen.write(line) filen.write("\n end of document\n") filen.close() 导航栏。在标题视图中设置自定义图像。

答案 1 :(得分:0)

您需要实施UITableView以实现相关提及的要求。您可以使用自定义单元格,并可在其上添加UIImageviewUILabel以显示图片和标题。您可以实现的第二件事tableHeaderView可以满足您对标题的需求。 Tableview内存效率高,性能卓越。因此,在您的情况下,UITableView是正确的选择。