2016-05-24 54 views
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 

enter image description here

如果您有任何想法解決它,請告訴我。

回答

0

你可以很可能設置爲零這樣的:

alarm.repeatInterval = NSCalendarUnit(rawValue: 0) 

這樣你正確精鑄人的價值。

+0

我會試試看。謝謝。 – Inuyasha