Skip to content

Instantly share code, notes, and snippets.

@XueshiQiao
Forked from steipete/UIView+PSPDFKitAdditions.m
Last active April 8, 2018 01:27
Show Gist options
  • Save XueshiQiao/d201766ac9522a93e094 to your computer and use it in GitHub Desktop.
Save XueshiQiao/d201766ac9522a93e094 to your computer and use it in GitHub Desktop.
@implementation UIView (PSPDFKitAdditions)
- (UIViewController *)pspdf_closestViewController {
UIResponder *responder = self;
while ((responder = [responder nextResponder])) {
if ([responder isKindOfClass:UIViewController.class]) break;
}
return (UIViewController *)responder;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment