You haven't synthesized your tabBarController variable. So add this:
Code:
@synthesize tabBarController;
... under the line:
Code:
@synthesize window;
And of course you have to declare that variable in your .h file, but I'm guessing you might have done that already?
Remember that all variables that you use @property for in your .h file must be @synthesized in your .m file.