I created UIExamsTVC using storyboards.
Once cell is clicked, it takes me to UITestVC.
UITestVC has 10 questions, When I get to the last question #10, there I have a "Done" button. I would like to go back to the original UIExamsTVC once the 'Done' button Clicked.
In: UITestVC.m
#import UIExamsTVC.h
(on button click)
[self.navigationController pushViewController:UIExamsTVC animated:NO];
- Compile error - Unexpected Interface name
How can I do this?