Toast-Swift
Toast-Swift copied to clipboard
Crash when clicking on toast quickly
I found a crash when you click on the toast quickly after it appears. To fix it I changed this
let timer = objc_getAssociatedObject(self, &HRToastTimer) as! NSTimer {
to this
if let timer = objc_getAssociatedObject(self, &HRToastTimer) as? NSTimer {