I have NSSplitView with divider style set as thin and it looks great.

However, if I replace one of a subviews with this line of code
[self.horizontalSplitView replaceSubview:[[self.horizontalSplitView subviews] objectAtIndex:0] with:myGreatView];
The divider looks kind of bad, how can I fix this issue?

NSRect prevFrame = [[self.horizontalSplitView.subviews objectAtIndex:0] frame]; self.sideBarViewController.view.frame = prevFrame;it does not help. Well it is not the same class per se, it's a subclass of NSView – pawelropa Jun 30 '12 at 17:31