我希望 basemap 显示在带有viewDidLoad()的Google map 的场景中,但是我在material.io网站上找到的唯一 basemap 示例是通过按钮触发的。如何使用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

关于ios - 如何在ViewDidLoad()上显示底表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50051711/

10-09 16:21