如何让 Bottom Sheet 显示在 viewDidLoad() 上?

How do I make Bottom Sheet show on viewDidLoad()?

我想要底部 sheet 显示在 viewDidLoad() 上带有 Google 地图的场景中,但我在 [=12= 上找到的唯一底部 sheet 示例] 网站通过按钮触发。

如何使用 MDCBottomSheetController 实现此目的?

@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