in the AppDelegate.h file i am using like
@interface AppDelegate : UIResponder <UIApplicationDelegate>
but then i get a error says self.idleTimerDisabled property not found on the appDelegate.
so i changed the AppDelegate.h file to..
@interface AppDelegate : UIApplication <UIApplicationDelegate>
Then it works didnt give the error but then it gives the error while running says.
Applications are expected to have a root view controller at the end of application launch
while i have set the [self.window setRootViewController:tabBarController]
i am confused... i am running in io5.
need help.. any sugessions???