-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
757f925
commit 61cfc0f
Showing
4 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import Cocoa | ||
|
||
import UserNotifications | ||
|
||
func PushNotification_DidSwitchInputSource(to inputsourceName: String) { | ||
// Create the notification and setup information | ||
let content = UNMutableNotificationContent() | ||
content.title = "\(inputsourceName)" | ||
content.body = "Successfully switched." | ||
|
||
// Create the request | ||
let uuidString = UUID().uuidString // TODO: not clear | ||
let request = UNNotificationRequest( | ||
identifier: uuidString, | ||
content: content, | ||
trigger: .none) | ||
|
||
let notificationCenter = UNUserNotificationCenter.current() | ||
notificationCenter.add(request) { error in | ||
if error != nil { | ||
print("[PushNotification_DidSwitchInputSource] Error") | ||
} else { | ||
// Successfully | ||
print("[PushNotification_DidSwitchInputSource] Successfully pushed.") | ||
} | ||
} | ||
} |