0

我想问一下,如何使用 cosmicmind/Material 处理 Material Button 的事件?我目前有这个代码。现在,我想在用户点击或单击按钮时执行一项功能。谢谢!

fileprivate func prepareRaisedButton() {
        let button = RaisedButton(title: "Create an account", titleColor : .white)
        button.pulseColor = .white
        button.backgroundColor = Color.teal.base

        view.layout(button)
            .height(ButtonLayout.Raised.height)
            .top(18 * constant).horizontally(left : constant, right : constant)
    }
4

1 回答 1

1

您想要的方法是从UIControl继承的:

button.addTarget(self, action: #selector(tapButton), for: .touchUpInside)
于 2017-01-22T14:51:01.650 回答