如何使用内部子菜单创建汉堡菜单

时间:2019-04-25 11:18:52

标签: ios swift hamburger-menu

我正在开发一个应用程序,该应用程序的要求是创建一个带有子菜单的汉堡菜单,例如like this

我尝试了在表视图单元格等中使用表的其他方法,但是无法创建此菜单。 如果有人有解决方案,那么推荐我

4 个答案:

答案 0 :(得分:3)

您可以创建一个项目结构作为数据源

struct Item {
    let text: String
    var subItems: [String]?
    var isExpanded = false
    init(_ text: String, items: [String]? = nil) {
        self.text = text
        self.subItems = items
    }
}

用法

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {

    @IBOutlet var tableView: UITableView!

    private let imgOpen = UIImage(named: "open")
    private let imgClose = UIImage(named: "close")

    private var dataSource = [Item]()

    override func viewDidLoad() {
        super.viewDidLoad()

        self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: "groupCell")
        self.tableView.dataSource = self
        self.tableView.delegate = self

        self.dataSource.append(Item("HOME"))
        self.dataSource.append(Item("ABOUT US"))
        self.dataSource.append(Item("OUR PROJECTS", items: ["Project-1", "Project-2", "..."]))
        self.dataSource.append(Item("BAHRIA TOWN PHASE 1 - 7"))
        self.dataSource.append(Item("BAHRIA TOWN PHASE 8"))
        self.tableView.reloadData()
    }

    func numberOfSections(in tableView: UITableView) -> Int {
        return self.dataSource.count
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        let item = self.dataSource[section]
        if item.isExpanded, let count = item.subItems?.count {
            return count + 1
        }

        return 1
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
            let item = self.dataSource[indexPath.section]

            let cell = tableView.dequeueReusableCell(withIdentifier: "groupCell", for: indexPath)
            var imageView: UIImageView?
            if indexPath.row > 0, let text = item.subItems?[indexPath.row - 1] {
                cell.textLabel?.text = text
            } else {
                cell.textLabel?.text = item.text
                if item.subItems != nil {
                    imageView = UIImageView(image: item.isExpanded ? self.imgClose : self.imgOpen)
                }
            }
            cell.accessoryView = imageView

            return cell
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        let item = self.dataSource[indexPath.section]
        if indexPath.row == 0 && item.subItems != nil {
            self.dataSource[indexPath.section].isExpanded = !item.isExpanded
            let indexSet = IndexSet(integer: indexPath.section)
            tableView.reloadSections(indexSet, with: .automatic)
        } else {
            // non-expandable menu item tapped
        }
    }
}

答案 1 :(得分:0)

您应该分开该过程。

  • 首先,创建汉堡菜单:为此,我建议使用以下第三方库:https://github.com/John-Lluch/SWRevealViewController 借助此功能,从屏幕左侧创建侧边菜单非常容易。 最好的是,您将获得一个ViewController来负责菜单,因此您可以轻松地对其进行自定义。

  • 第二,如下所述,您应该使用具有可扩展单元格的tableView。最好的方法是基本上只显示单元格的标题。如果用户点击标题,则显示实际单元格。 (行高> 0)。有一个有关此的教程:https://www.youtube.com/watch?v=bSKUYRsMCrM

答案 2 :(得分:0)

->您可以使用以下任一库创建滑动抽屉菜单(汉堡菜单):

1) REFrostedViewController
2) SWRevealViewController or any other

->子菜单:在抽屉视图控制器中,您必须添加一个表格视图并实现可扩展/可折叠部分以显示子菜单。您可以按照任何有关扩展折叠表视图部分的说明进行操作。一些教程链接如下:

https://github.com/jeantimex/ios-swift-collapsible-table-section
https://medium.com/@legonaftik/uitableview-with-collapsible-sections-927d726b985c

答案 3 :(得分:0)

第一个跟随https://github.com/jonkykong/SideMenu

然后制作EXPANDABLE单元格:-

您只需要在UITableView(在情节提要中)中创建2个单元格。第一个单元格用于那些不可扩展的单元,第二个单元格用于可扩展的单元。

class SideMenuTableViewController: UITableViewController {

    // MARK:- Constants And Vars
    var isOurProjectCellExpanded = false
}

class SideMenuTableViewController: UITableViewDataSource, UITableViewDelegate {
      override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
            let cell = tableView.dequeueReusableCell(withIdentifier: "simpleCell", for: indexPath) as! SideMenuBasicTableViewCell
            switch indexPath.row {
            case 0:
                cell.itemName.text = "HOME"
                break
            case 1:
                cell.itemName.text = "About Us"
                break
            case 2:
                if(isOurProjectCellExpanded){
                    //expandedCell
                    let cell = tableView.dequeueReusableCell(withIdentifier: "expandedCell", for: indexPath) as! SideMenuBasicTableViewCell
                    cell.itemName.text = "Our Projects"
                    return cell
                }else{
                    cell.arrowDownImageView.isHidden = false
                    cell.itemName.text = "Our Projects"
                }
                break
            case 3:
                cell.itemName.text = "Bahria Town phase 1-7"
                break
            case 4:
                cell.itemName.text = "Bahria Town phase 8"
                break
            default:
                break
            }
            return cell
        }

     //And in `DidSelectRow` Method
     override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
            if(indexPath.row == 2){
                if(isOurProjectCellExpanded){
                    isOurProjectCellExpanded = false
                    tableView.reloadRows(at: [indexPath], with: .none)
                }else{
                    isOurProjectCellExpanded = true
                    tableView.reloadRows(at: [indexPath], with: .none)
                }
            }else if(indexPath.row == 0){
                // Handle it yourself
            }else if(indexPath.row == 1){
                // Handle it yourself
            }else if(indexPath.row == 3){
                // Handle it yourself
            }else if(indexPath.row == 4){
                // Handle it yourself
            }
        }

    }