Search code examples
iosobjective-cswiftiphoneappdelegate

How to create AppDelegate shared Instance in iOS?


How to create sharedInstance of AppDelegate and use in my Application anywhere.


Solution

  • Use like this:

    In the AppDelegate.h

    + (AppDelegate *)sharedAppDelegate;
    

    In AppDelegate.m

    + (AppDelegate *)sharedAppDelegate{
        return (AppDelegate *)[UIApplication sharedApplication].delegate;
    }