git.ithinksw.org
/
ITKit.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ITKit for Menutunes
[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