libs-steptalk/Examples/Smalltalk/notification.st

25 lines
438 B
Smalltalk
Raw Normal View History

" 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
]