Skip to content

Commit

Permalink
Add new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLeif committed Oct 10, 2024
1 parent 57ea077 commit 89af2d7
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ extension Application {
public func data(forKey key: String) -> Data? {
NSUbiquitousKeyValueStore.default.data(forKey: key)
}

public func set(_ value: Data?, forKey key: String) {
NSUbiquitousKeyValueStore.default.set(value, forKey: key)
}

public func removeObject(forKey key: String) {
NSUbiquitousKeyValueStore.default.removeObject(forKey: key)
}
Expand Down

0 comments on commit 89af2d7

Please sign in to comment.