Lines Matching full:notificationcenter
967 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
968 [notificationCenter removeObserver:self name:NSViewFrameDidChangeNotification object:superview];
969 [notificationCenter removeObserver:self name:NSViewBoundsDidChangeNotification object:superview];
983 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
984 [notificationCenter removeObserver:self name:NSWindowDidBecomeKeyNotification object:nil];
985 [notificationCenter removeObserver:self name:NSWindowDidResignKeyNotification object:nil];
986 [notificationCenter removeObserver:self name:NSWindowWillCloseNotification object:window];
2961 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
2962 [notificationCenter addObserver:self selector:@selector(_frameOrBoundsChanged) name:NSViewFrameDidChangeNotification object:superview];
2963 [notificationCenter addObserver:self selector:@selector(_frameOrBoundsChanged) name:NSViewBoundsDidChangeNotification object:superview];
2984 NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
2985 [notificationCenter addObserver:self selector:@selector(windowDidBecomeKey:) name:NSWindowDidBecomeKeyNotification object:nil];
2986 [notificationCenter addObserver:self selector:@selector(windowDidResignKey:) name:NSWindowDidResignKeyNotification object:nil];
2987 [notificationCenter addObserver:self selector:@selector(windowWillClose:) name:NSWindowWillCloseNotification object:window];