动态表视图+滚动视图

时间:2014-11-02 16:20:35

标签: ios swift uiscrollview

我有UIScrollView,顶部有一些信息来源,按钮上有一个UITableView。表视图无法滚动,因此能够显示需要进行手动计算的大量单元格。这就是我实际做的事情(你可以在下面的代码中看到)。同时,桌面视图的容器也应随之增长。我尝试在加载视图时更改这些参数但没有真正改变...

这是它的样子。在IB。

enter image description here

结构。

enter image description here

代码。

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
    @IBOutlet var scrollView: UIScrollView!
    @IBOutlet var tableView: UITableView!

    let numberOfCells = 55
    let rowHeight: CGFloat = 40
    let footerHeight: CGFloat = 30
    let headerHeight: CGFloat = 30

    let identifier = "Cell"

    override func viewDidLoad() {
        super.viewDidLoad()

        self.tableView.dataSource = self
        self.tableView.delegate = self
        self.tableView.backgroundColor = self.view.backgroundColor
        self.tableView.scrollEnabled = false

        self.automaticallyAdjustsScrollViewInsets = false
        self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: self.identifier)

        let estimatedHeight = CGFloat(self.numberOfCells) * self.rowHeight + self.footerHeight + self.headerHeight
        self.tableView.frame.size = CGSizeMake(self.tableView.bounds.width, estimatedHeight)
        self.scrollView.contentSize = CGSizeMake(self.view.bounds.width, CGRectGetMaxY(self.tableView.frame))
        self.scrollView.frame.size = CGSizeMake(self.view.bounds.width, CGRectGetMaxY(self.tableView.frame))
    }

    // MARK:- Table view data source

    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return self.numberOfCells
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier(self.identifier) as UITableViewCell

        cell.textLabel?.text = "City"
        cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

        return cell
    }

    // MARK:- Table view delegate

    func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        tableView.deselectRowAtIndexPath(indexPath, animated: true)
    }

    func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
        return self.rowHeight
    }

    func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return self.headerHeight
    }

    func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
        return self.footerHeight
    }
}

那么,原因可能是什么?如何制作我想要的东西?坦率地说,我对UIScrollView并不熟悉,但是有一些教程可以构建图像。

2 个答案:

答案 0 :(得分:1)

基本上,这是一个非常糟糕的方式。只有在您具有非常特定的功能时才能应用它。通常,您可以简单地将所有内容放在UITableView内。只需创建一个UIView实例,添加子视图,制作布局内容并将此视图指定为tableView.tableHeaderView。它适合我,也希望你! :)

答案 1 :(得分:0)

UITableView会自动滚动 - 但它不能,因为你已经将它的高度设置为所有单元格的高度。将高度设置为屏幕高度,一切都会很好。

UIScrollView是不必要的,但您在这里也做了同样的事情 - 您已将滚动视图框架高度和内容高度设置为表视图的高度。仅设置内容高度将使scrollview能够完成其工作。

快乐的编码。