2
我有以下代碼:使用未解決的標識符: 「UNMutableNotificationContent」
func sendLucidNotification() {
let content = UNMutableNotificationContent()
content.title = "10 Second Notification Demo"
content.subtitle = "From MakeAppPie.com"
content.body = "Notification after 10 seconds - Your pizza is Ready!!"
content.categoryIdentifier = "message"
}
當我打電話,UNMutableNotificationContent,或任何 「UNMutableNotification」 的變化,我得到以下錯誤:
Use of unresolved identifier: "UNMutableNotificationContent"
我在Xcode 8.0上,但是當我嘗試自動完成時,它也不能識別它。有任何想法嗎 ?謝謝!
你擁有自營'UserNotifications'框架? –