0
我是一個快捷語言的新手。我正在使用UILocalNotification進行本地通知。在Objective-C,我可以送按repeatInterval不通過賦予它重複爲0。如何使UILocalNotification不會在swift中重複?
UILocalNotification* alarm = [[UILocalNotification alloc] init];
alarm.repeatInterval = 0;
但是,當我在斯威夫特0賦給按repeatInterval我得到了一個錯誤。
let alarm : UILocalNotification = UILocalNotification()
alarm.repeatInterval = 0
如果您有任何想法解決它,請告訴我。
我會試試看。謝謝。 – Inuyasha