LaunchMe/Classes/LaunchMeAppDelegate.h

/*
 Copyright (C) 2017 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 The application's delegate class. Handles incoming URL requests.
 */
 
// Keys to each parameter value in the URL
// (shared between App Delegate and RootViewController)
//
#define ColorKey @"color"
#define TextKey @"text"
 
@import UIKit;
 
@interface LaunchMeAppDelegate : NSObject <UIApplicationDelegate>
 
@end