There's a setContentSize on the popover, but I have the impression this doesn't work so well. I mean it works, but resizes the content (including child views). So the better way is to create a new NSViewController and assign it the new view. On setting this new controller on the NSPopover the size is properly respected and if the popover is currently shown it will animate to the new view.
If you can't do this but instead want to resize the content in place use something like this:
NSRect frame = valuePopupList.frame;
frame.origin = NSMakePoint(2, 2);
... determine new frame ...
NSSize contentSize = frame.size;
contentSize.width += 4; // Border left/right.
contentSize.height += 4; // Ditto for top/bottom.
if (contentSize.height < 26) {
contentSize.height = 26;
}
valuePopupList.frame = frame;
statementsPopover.contentSize = contentSize;
[statementsPopover showRelativeToRect: area ofView: view preferredEdge: NSMaxXEdge];
valuePopupList.frameOrigin = frame.origin;