Palladium
A lightweight framework to schedule and cancel local notifications.
Install / Use
/learn @UnlockAgency/PalladiumREADME

Palladium is part of the E-sites iOS Suite.
A lightweight framework to schedule and cancel local notifications.
Installation
Podfile:
pod 'Palladium'
And then
pod install
Implementation
import Palladium
func authorize() {
Palladium.shared.requestAuthorization { error in
print("Authorization result: \(String(describing: error))")
}
}
func schedule() {
let content = UNMutableNotificationContent()
content.body = "This is a notification"
content.title = Date().description
var metaData = MetaData(id: "123")
metaData.tags = [ "tag1", "tag2" ]
let date = Date(timeIntervalSinceNow: 5)
Palladium.shared.add(content: content, in: metaData, at: date) { request, error in
print("Scheduled: \(String(describing: request)), error: \(String(describing: error))")
}
}
func cancel() {
Palladium.shared.cancelNotifications(tags: [ "tag2" ]) { identifiers, error in
print("Cancelled: \(identifiers?.count ?? 0), error: \(String(describing: error))")
}
}
Related Skills
node-connect
339.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
339.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.9kCommit, push, and open a PR
