Created
September 17, 2012 14:51
-
-
Save wemakeweb/3737824 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - (void)pdfViewController:(PSPDFViewController *)pdfController willShowAnnotationView:(UIView <PSPDFAnnotationView> *)annotationView onPageView:(PSPDFPageView *)pageView { | |
| if ([annotationView isKindOfClass:[PSPDFLinkAnnotationView class]]) { | |
| PSPDFLinkAnnotationView *linkAnnotation = (PSPDFLinkAnnotationView *)annotationView; | |
| linkAnnotation.borderColor = [[UIColor blueColor] colorWithAlphaComponent:0]; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you please provide this code in swift with the capability to change border color in all pages of a documents.