在故事板中创建配置文件UI

时间:2016-08-10 13:06:03

标签: swift uitableview storyboard

我正在尝试在故事板中创建配置文件UI,但我遇到了问题。我需要创建"标题"比如在Twitter应用程序个人资料中,但我不知道该怎么做。我试图在原型单元格中放置一个imageView,但它开始用整个tableView滚动(例如,当我试图在顶部向上滚动一个空白区域时)。

Click here to see necessary UI

任何建议都将不胜感激!

!!!解

我找到了适合我的最佳解决方案。我远离xCode,所以我试图在Sketch中进行说明。

Click here to see the scheme

您需要在ViewController中设置一个containerView。在您的containerView中将嵌入tableView。现在,您需要在ViewController中设置第一个原型单元格,其高度为imageView。然后,你需要的只是几行代码:)

let cell = tableView.dequeueReusableCellWithIdentifier("IDOfYourFirstPrototypeCell") as UITableViewCell!
cell.backgroundColor = UIColor.clearColor()
return cell

并在你的viewDidLoad函数中:

tableView.backgroundColor = UIColor.clearColor()

另外,如果我没有错,你需要删除ContainerView的背景。

在ViewController的viewDidLoad函数中:

containerView.backgroundColor = UIColor.clearColor()

很抱歉,如果我的帖子中有一些语法错误:)

1 个答案:

答案 0 :(得分:0)

你应该从tableView中获取你的个人资料视图。试试这个UI方案

enter image description here