mirror of
https://github.com/ish-app/ish.git
synced 2026-05-28 21:10:35 +00:00
69ff9f6f17
This should fix some KVO crashes due to the view controllers being initialized strangely.
19 lines
271 B
Objective-C
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
|