MacOS任務計劃

Mac計劃任務
https://payloads.online/archivers/2021-11-23/1/

Mac彈窗提示

swift

var alert:NSAlert = NSAlert()
alert.messageText = "警告"alert.addButtonWithTitle("好")
alert.alertStyle = NSAlertStyle.CriticalAlertStyle

// 滑出式
alert.beginSheetModalForWindow(window,completionHandler:nil)

// 彈出式
alert.runModal()

//OC

 NSAlert *alert = [NSAlert alertWithMessageText:@"提示" defaultButton:@"明白" alternateButton:nil otherButton:nil informativeTextWithFormat:@"用戶名或者密碼不能爲空!"];
[alert runModal];

在Mac上彈出通知提醒
使用AppleScript彈出一個提醒

display notification "Lorem ipsum dolor sit amet" with title "Title"

使用命令行

/usr/bin/osascript -e "display notification \" 提醒內容 \" with title \"提醒標題\""

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章