mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
19 lines
386 B
Mathematica
19 lines
386 B
Mathematica
![]() |
//
|
||
|
// UIViewController+Dismiss.m
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Nicholas Riley on 3/19/16.
|
||
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "UIViewController+HidePopover.h"
|
||
|
#import "NewsBlurAppDelegate.h"
|
||
|
|
||
|
@implementation UIViewController (HidePopover)
|
||
|
|
||
|
- (void)hidePopover {
|
||
|
[(NewsBlurAppDelegate *)[UIApplication sharedApplication].delegate hidePopover];
|
||
|
}
|
||
|
|
||
|
@end
|