Goto PDFKBasicPDFViewer.m and follow the steps.
Step 1:
Button code:
self.backButtonTitle = @"Done";
[buttonsArray addObject:[[UIBarButtonItem alloc] initWithTitle:self.backButtonTitle style:UIBarButtonItemStylePlain target:self action:@selector(dismissed)]];
Step 2:
Dismiss View:
- (void)dismissed
{
[self.navigationController popToRootViewControllerAnimated:YES];
}
Output: