mastodon-app-ufficiale-ipho.../Mastodon/Preference/NotificationPreference.swift

21 lines
380 B
Swift
Raw Normal View History

//
// NotificationPreference.swift
// Mastodon
//
// Created by MainasuK Cirno on 2021-4-26.
//
import UIKit
extension UserDefaults {
@objc dynamic var notificationBadgeCount: Int {
get {
register(defaults: [#function: 0])
return integer(forKey: #function)
}
set { UserDefaults.shared[#function] = newValue }
}
}