Cocoa 사용자 정의 알림 예제 누군가 사용자 정의 알림, 실행 방법, 구독 및 처리 방법과 함께 Cocoa Obj-C 객체의 예를 보여줄 수 있습니까? @implementation MyObject // Posts a MyNotification message whenever called - (void)notify { [[NSNotificationCenter defaultCenter] postNotificationName:@"MyNotification" object:self]; } // Prints a message whenever a MyNotification is received - (void)handleNotification:(NSNotification*)note { NSLog(@"Got notif..