Showing posts with label Document interaction controller.... Show all posts
Showing posts with label Document interaction controller.... Show all posts

24 Jun 2017

UIDocumentInteractionController...


UIDocumentInteractionController...


add delegate in .h  <UIDocumentInteractionControllerDelegate>


- (IBAction)termsActionBtn:(id)sender {
    
     NSURL *URL = [[NSBundle mainBundle] URLForResource:@"Terms and conditions" withExtension:@"pdf"];
    
    if (URL) {
        self.documentController = [UIDocumentInteractionController interactionControllerWithURL:URL];
        [self.documentController setDelegate:self];
        [self.documentController presentPreviewAnimated:YES];
    }

}

- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller{
    return self.navigationController;

}

Recent Posts

Codable demo

Link: https://www.dropbox.com/s/kw7c1kgv1628bh7/codableDemo.zip?dl=0