UITableView和修复标题

时间:2016-10-19 14:55:14

标签: ios uitableview cocoa-touch

我有一个吐痰的观点。主人是表格视图。我想在表视图上方放置一个固定标签(如固定标题)。我怎么能在故事板中做到这一点?

1 个答案:

答案 0 :(得分:0)

在表视图控制器中无法添加固定部件。但您可以在其中使用View Controller和表视图。使用此解决方案,您可以在顶部,底部或表视图上设置固定的拍摄。

  1. 首先将视图控制器添加到storyboard
  2. 将tableview添加到视图控制器
  3. 在检查员中,表格视图>设置原型Cell = 1
  4. 在检查员中,表格视图单元格> set Identifier = cell
  5. 添加一个viewcontroller.swift并在其上面编写此代码,如下所示
  6. 导入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
    }
    

    }

    1. 在此步骤中,您的表格设置为查看控制器,您可以在表格视图的顶部添加视图,并在视图上添加标签。
    2. 现在,您在表格视图的顶部有一个固定的标题。 您可以在此图片中查看所有步骤的图片。好好享受。  All image of toturial