Adding some new classes that ease access of Carbon/Mac-style resource files/forks.
[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