main.m 461 B

12345678910111213141516171819
  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. #import "TCAppDelegate.h"
  11. int main(int argc, char *argv[])
  12. {
  13. @autoreleasepool {
  14. return UIApplicationMain(argc, argv, nil, NSStringFromClass([TCAppDelegate class]));
  15. }
  16. }