libs-steptalk/Examples/Smalltalk/notification.st
Adam Fedor c2c2d22254 Initial revision
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@13642 72102866-910b-0410-8b05-ffd578937521
2002-05-13 22:13:06 +00:00

24 lines
438 B
Smalltalk

" Notification example "
[|
main
| nc |
nc := NSNotificationCenter defaultCenter.
Transcript showLine:'Registering for notification'.
nc addObserver:self selector:#notification: name:'Notification' object:nil.
Transcript showLine:'Posting notification'.
nc postNotificationName:'Notification' object:nil.
^self
!
notification:notif
Transcript showLine:'Notification received'.
^self
]