I have a button that loads a viewcontroller on tap using
- (void)didTap_imageButton3:(id)sender forEvent:(UIEvent *)event {
TramvajViewController *controller = [[TramvajViewController alloc] init];
[self.navigationController pushViewController:controller animated:NO];
[controller release];
}
How can I make it go to another controller in a specific time period (e.g. from midnight to 5)?
you can use the following