I think you can only use NSWindow's setFrame:display:animate: I don't think the windows can be sized automatically. So when you change the contents you can do something like this:
NSRect oldContentFrame = [oldContentView frame];
NSRect newContentFrame = [newContentView frame];
float widthDifference = oldContentFrame.size.width - newContentFrame.size.width;
float heightDifference = oldContentFrame.size.height - newContentFrame.size.height;
// Change the size of the window by the difference between the two views
// and move the frame up
NSRect windowFrame = [window frame];
windowFrame.size.width += widthDifference
windowFrame.size.height += heightDifference;
windowFrame.origin.y -= heightDifference;
// Remove the old content
[oldContentView removeFromSuperview];
// Change the size
[window setFrame:windowFrame display:YES animate:YES];
// Add the new view
[window setContentView:newContentView];