b2c8c0c93f5eef9e8029ae54c407346a7659e0ec
[ITKit.git] / ITCategory-NSView.m
1 #import "ITCategory-NSView.h"
2
3
4 @implementation NSView (ITCategory)
5
6 - (void)removeAllSubviews {
7     [[self subviews] makeObjectsPerformSelector:@selector(removeFromSuperview)];
8 }
9
10 @end