TCAppDelegate.h 393 B

12345678910111213141516
  1. //
  2. // Copyright 2012 Square Inc.
  3. // Portions Copyright (c) 2016-present, Facebook, Inc.
  4. // All rights reserved.
  5. //
  6. // This source code is licensed under the license found in the
  7. // LICENSE-examples file in the root directory of this source tree.
  8. //
  9. #import <UIKit/UIKit.h>
  10. @interface TCAppDelegate : UIResponder <UIApplicationDelegate>
  11. @property (nonatomic, strong) UIWindow *window;
  12. @end