Skip to content

Instantly share code, notes, and snippets.

@HeshamMegid
HeshamMegid / AppDelegate.m
Created January 11, 2017 16:08 — forked from walkerc4/AppDelegate.m
iOS AppDelegate with multiple crash handlers, including custom one to show local notification that the app has crashed
@interface AppDelegate()
@property (nonatomic, assign) NSUncaughtExceptionHandler *crashHandler1;
@property (nonatomic, assign) NSUncaughtExceptionHandler *crashHandler2;
@end
@implementation AppDelegate
AppDelegate *cSelf;