如何在SWIFT中的UITableViewController中切换节单元格?

时间:2016-04-27 17:21:26

标签: swift uitableview mobile-application

我是iOS移动应用程序开发和Swift的新手。我正在尝试实现一个可以执行以下操作的UITableViewController:

  • 点击任何部分标题后,与该特定部分对应的单元格应该下拉。
  • 单击包含0个单元格的节标题时,应触发segue并将其推送到另一个ViewController。

0个细胞 - >推送到另一个ViewController n个细胞 - >下拉

如何在Swift中实现这一目标?

我在UITableViewController中尝试了以下代码来切换,但是徒劳无功。

override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let frame: CGRect = tableView.frame

    let button   = UIButton(type: UIButtonType.System) as UIButton
    button.frame = CGRectMake(5, 5, frame.size.width-10, 80)
    button.addTarget(self, action: "menuButtonAction", forControlEvents: .TouchUpInside)
    if section == 1 {
        button.setTitle("Home", forState: UIControlState.Normal)
    }else if section == 2 {
        button.setTitle("Profile", forState: UIControlState.Normal)
    }else if section == 3 {
        button.setTitle("Projects", forState: UIControlState.Normal)
    }else {
        button.setTitle("Title", forState: UIControlState.Normal)
    }

    let headerView = UIView(frame: CGRectMake(0, 0, frame.size.width, 150))
    headerView.addSubview(button)

    return headerView;
}

var enabledCategory:Bool = false

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    // #warning Incomplete implementation, return the number of rows
    if (section == 3 && enabledCategory){
        return dataHandler.getNumberOfProjects()
    }
    else {
        return 0
    }
}


override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("menuCellIdentifier", forIndexPath: indexPath) as? TableViewCell

    // Configure the cell...

    if indexPath.section == 3 {
        cell!.customLabel.text = String(indexPath.row)
    }
    return cell!
}


override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    if indexPath.section == 3 {
        enabledCategory = !enabledCategory
        tableView.reloadSections(NSIndexSet(index: 3) , withRowAnimation: .Fade)
    }
}

并且,我不知道如何通过点击第1和第2部分来推送到不同的ViewController。

感谢。

1 个答案:

答案 0 :(得分:0)

默认UITableView标头视图不可点击。您应该实施tableView(_:viewForHeaderInSection:) UITableViewDelegate方法并提供您自己的UIView UIButton或一些可点击元素