You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppDelegate+CULPlugin.h 516B

1234567891011121314151617
  1. //
  2. // AppDelegate+CULPlugin.h
  3. //
  4. // Created by Nikolay Demyankov on 15.09.15.
  5. //
  6. #import "AppDelegate.h"
  7. /**
  8. * Category for the AppDelegate that overrides application:continueUserActivity:restorationHandler method,
  9. * so we could handle application launch when user clicks on the link in the browser.
  10. */
  11. @interface AppDelegate (CULPlugin)
  12. - (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray *))restorationHandler;
  13. @end