1 #import "ITCategory-NSView.h"
3 @implementation NSView (ITKitCategory)
5 - (void)removeAllSubviews {
6 [[self subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];
9 - (void)removeSubview:(NSView *)subview {
10 if ([subview superview] == self) {
11 [subview removeFromSuperview];