-2
我想在Mac上製作時鐘應用程序,當時間緊迫時,我想在屏幕上顯示提醒窗口,我該怎麼做?非常感謝你。如何在Mac上製作提醒窗口
我想在Mac上製作時鐘應用程序,當時間緊迫時,我想在屏幕上顯示提醒窗口,我該怎麼做?非常感謝你。如何在Mac上製作提醒窗口
從簡單的消息框開始怎麼樣?
NSString *caption = @"Reminder";
NSString *text = @"Alarm!";
NSAlert* x = [[NSAlert alloc] init];
[x setInformativeText: text];
[x setMessageText: caption];
[x addButtonWithTitle: @"OK"];
[x runModal];
[x release];
謝謝,我會試試這個 – laiqn
你可以使用'NSRunAlertPanel' –