In the first case you own the UIViewController you create, this means you are responsible for releasing it. If you don't release it, there will probably be a leak somewhere.
UIViewController *vcToAdd = [[UIViewController alloc] initWithNibName:@"vcxib" bundle:[NSBundle mainBundle]];
[self.view addSubview:vcToAdd.view];
[vcToAdd release];
In the second case you DON'T own the content of the Nib file. So you aren't responsible for managing memory. Anyway, here you are getting the content of a Nib file and presenting it "as it is". Without a UIViewController that controls its behavior.
If the view contained in your Nib file needs some complex management, for example animations or getting touches, UIViewController way is probably what you're looking for...
Take a look at Apple's Memory Management Guide here and here (in English).
EDIT: There is a third way... Create your view programmatically without using Nib files.
// Create your content view
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 480.0f)];
// Add objects to it
UIButton *button = [UIButton ...
UILabel *label = [UILabel ...
[view addSubview:button];
[view addSubview:label];
...
// Put your content view on screen
[self.view addSubview:view];
// Free memory
[view release];