Quote:
Originally Posted by DevTeamOfOne
You don't technically need to release listTableView until dealloc. Move your release of listTableView to there and try. I had this error a few times. It's just released there for memory management.
Try it there and let us know how u go.
|
Yeah I tried that and it didnt work. Here is my h file....am I missing something?
@class AppTabViewController;
@interface AppTabAppDelegate : NSObject <UIApplicationDelegate, UITabBarDelegate> {
UIWindow *window;
UIViewController *listTableViewController;
UIViewController *myInfoTableViewController;
}
@property (nonatomic, retain) UIWindow *window;
@property (nonatomic, retain) UIViewController *listTableViewController;
@property (nonatomic, retain) UIViewController *myInfoTableViewController;
@end