21 lines
380 B
Swift
21 lines
380 B
Swift
|
//
|
||
|
// 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 }
|
||
|
}
|
||
|
|
||
|
}
|