I have a very simple app with very little code. In my ViewController I have done no code, I have only added a navigation bar which contains a next button with a modal to the Vid
try this code
- (void)viewDidLoad
{
[super viewDidLoad];
//code added
//[self performSelector:@selector(goBack) withObject:nil afterDelay:5.0];
[NSTimer scheduledTimerWithTimeInterval:3.0
target:self
selector:@selector(goBack)
userInfo:nil repeats:NO];
}
//code added
-(void)goBack{
[self.navigationController popViewControllerAnimated:YES];
}