如何在viewDidLoad()上显示底部工作表?

时间:2018-04-26 20:55:39

标签: ios swift material-components-ios

我希望在viewDidLoad()上使用Google地图在一个场景上显示一个底页,但我在material.io网站上找到的唯一底页示例会被一个按钮触发。
/>如何使用MDCBottomSheetController来实现此目的?

2 个答案:

答案 0 :(得分:2)

@ stone-cold见下面提到的代码。

import MaterialComponents.MaterialButtons

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let bottomSheet = MDCBottomSheetController(contentViewController: viewController)

        // Present the bottom sheet
        present(bottomSheet, animated: true, completion: nil)
    }

}

在此处查看更多详情https://github.com/material-components/material-components-ios/tree/develop/components/BottomSheet

答案 1 :(得分:1)

您应该查看此GitHub存储库。这是对this StackOverflow问题的回应。我相信这正是你要找的。

enter image description here enter image description here