Mountain Lionで通知センターに投稿するアプリを作ってみました。
NSUserNotification *notification = [[NSUserNotification alloc] init];
[notification setTitle:@"タイトル"];
[notification setInformativeText:@"表示する内容"];
[notification setDeliveryDate:[NSDate dateWithTimeInterval:0 sinceDate:[NSDate date]]];
[notification setSoundName:NSUserNotificationDefaultSoundName];
NSUserNotificationCenter *center = [NSUserNotificationCenter defaultUserNotificationCenter];
[center scheduleNotification:notification];
とりあえず、上記の様にしてボタンを押すようなアプリを作れば、通知センターにセットしたい物を表示できます。
実際に作ったアプリは評判を見て公開しようと思います。