main.m 480 B

123456789101112131415161718
  1. //
  2. // main.m
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. #import "AppDelegate.h"
  12. int main(int argc, char * argv[]) {
  13. @autoreleasepool {
  14. return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
  15. }
  16. }