For you appDelegate to know about your UIViewController sub class you must import its header.
So in your AppDelegate.m add -
#import "NotifyViewController.h"
Then assuming your rootViewController is of this class you can access it anywhere in your AppDelegate.m and send it a message using -
[(NotifyViewController*)self.window.rootViewController importNotificationForm];// I changed the method name slightly as I don't like to use get with a method of type void
Note the typecast and also please start class names with a capital letter and use camel case. Follow naming conventions for easier to read code.