我正在使用Whisper swift库,有没有办法判断是否可以看到耳语?

时间:2016-07-31 21:44:18

标签: ios swift

我在Swift中使用Whisper如下:

    let message = Message(title: message, backgroundColor: FlatOrange())
    Whisper(message, to: navigationController!, action: .Show)

有没有办法判断Whisper消息目前是否可见?如果已经存在错误状态,我想防止重复提交。

1 个答案:

答案 0 :(得分:0)

根据他们的文件,它似乎并非如此。但是,您可以跟踪全局布尔值,或在控制器之间传递实例。

If !self.whisperIsVisible {
    // show whisper
    self.whisperIsVisible = true;
}