// Aspects that only need the box and create the rest of their stuff programmatically, can just use the default nib. Aspects with their own nibs should override.
return @"Aspect";
}
- (void)loadNibIfNeeded {
if (!_nibLoaded) {
if ([NSBundle loadNibNamed:[self aspectNibName] owner:self]) {
// We don't want the window, only the view. So we retain the view and remove it from the window. Then we can release the window.