我在Swift中使用Whisper如下:
let message = Message(title: message, backgroundColor: FlatOrange())
Whisper(message, to: navigationController!, action: .Show)
有没有办法判断Whisper消息目前是否可见?如果已经存在错误状态,我想防止重复提交。
答案 0 :(得分:0)
根据他们的文件,它似乎并非如此。但是,您可以跟踪全局布尔值,或在控制器之间传递实例。
If !self.whisperIsVisible {
// show whisper
self.whisperIsVisible = true;
}