| NSObject |
| ↓ |
| NSResponder |
| ↓ |
| NSView |
NSBox *box=[[NSBox alloc]initWithFrame:CGRectMake(50,50,200,100)]; box.title=@"ボックス"; [self.window.contentView addSubview:box]; [[NSButton]] *button=[[NSButton alloc]initWithFrame:CGRectMake(10,10,100,100)]; button.title=@"ぼたん"; [button sizeToFit]; [box addSubview:button];
