我有一个吐痰的观点。主人是表格视图。我想在表视图上方放置一个固定标签(如固定标题)。我怎么能在故事板中做到这一点?
答案 0 :(得分:0)
在表视图控制器中无法添加固定部件。但您可以在其中使用View Controller和表视图。使用此解决方案,您可以在顶部,底部或表视图上设置固定的拍摄。
导入UIKit
class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
var arrayTest : [String] = []
override func viewDidLoad() {
super.viewDidLoad()
arrayTest = ["iPad","iPhone","iPod","macOS","iOS"]
tableView.delegate = self
tableView.dataSource = self
tableView.reloadData()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return arrayTest.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = arrayTest[indexPath.row]
return cell
}
}
现在,您在表格视图的顶部有一个固定的标题。 您可以在此图片中查看所有步骤的图片。好好享受。 All image of toturial