Files
ish/app/UIViewController+Extras.h
Saagar Jha 69ff9f6f17 Dismiss about view controller correctly
This should fix some KVO crashes due to the view controllers being
initialized strangely.
2020-11-11 22:36:15 -08:00

19 lines
271 B
Objective-C

//
// UIViewController+Extras.h
// iSH
//
// Created by Theodore Dubois on 9/23/18.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIViewController (Extras)
- (void)presentError:(NSError *)error title:(NSString *)title;
@end
NS_ASSUME_NONNULL_END