i\'m having a hard time with Xcode; for some reason, it just won\'t let me pass a variable from one view controller class to another. It should work, i was basically just co
This doesn't exaclty answer your question, but your memory management is a bit wonky. This line:
[dvc dealloc];
should read like this:
[dvc release];
dvc = nil;
In Cocoa, you should never call dealloc directly -- follow the retain/release/autorelease pattern and things will work better and as intended.