我在Swift中搜索Listview,如下所示:
通缉ListView: -
我想要一个ListVIew,它在背景中有一张图片,在图片上有一个文字。当我点击那张照片时,我想去下一个网站。
我是如何获得这些标题的?
标题示例: -
有人可以帮助我吗?
答案 0 :(得分:1)
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以实现相关提及的要求。您可以使用自定义单元格,并可在其上添加UIImageview
和UILabel
以显示图片和标题。您可以实现的第二件事tableHeaderView
可以满足您对标题的需求。 Tableview
内存效率高,性能卓越。因此,在您的情况下,UITableView
是正确的选择。