【发布时间】:2018-02-16 13:49:04
【问题描述】:
我正在尝试在此 repo 中显示的小吃店消息的末尾运行一些代码:https://github.com/material-components/
但是我真的不太了解方法的语法来实现它。这个具体:https://github.com/material-components/material-components-ios/blob/develop/components/Snackbar/src/MDCSnackbarMessage.h#L125
@property(nonatomic, copy, nullable) MDCSnackbarMessageCompletionHandler completionHandler;
// I've tried a'lot of different ways but nothing works:
let message = MDCSnackbarMessage()
message.completionHandler (success: Bool?) -> Void in do {
}
message.completionHandler = true in {
}
说实话,我对方法语法的理解不够好,无法使用它。
【问题讨论】:
标签: swift material-components-ios