FileManager.h
上传用户:xy800802
上传日期:2020-12-29
资源大小:194k
文件大小:1k
源码类别:

iPhone

开发平台:

Objective-C

  1. #import <Foundation/Foundation.h>
  2. #import <CoreFoundation/CoreFoundation.h>
  3. #import <UIKit/UIKit.h>
  4. #import <UIKit/UIApplication.h>
  5. #import <UIKit/CDStructures.h>
  6. #import <UIKit/UIPushButton.h>
  7. #import <UIKit/UIThreePartButton.h>
  8. #import <UIKit/UINavigationBar.h>
  9. #import <UIKit/UIWindow.h>
  10. #import <UIKit/UIView-Hierarchy.h>
  11. #import <UIKit/UIHardware.h>
  12. #import <UIKit/UITable.h>
  13. #import <UIKit/UITableCell.h>
  14. #import <UIKit/UITableColumn.h>
  15. @interface FileManager : UIApplication {
  16. UIWindow *window;
  17. UIView *mainView;
  18. }
  19. // 程序加载完毕
  20. - (void) applicationDidFinishLaunching: (id) unused;
  21. // 屏幕锁定
  22. - (void)applicationWillSuspendUnderLock:(struct __GSEvent *)event;
  23. // 被电话等事件中断
  24. - (void)applicationWillSuspendForEventsOnly:(struct __GSEvent *)event;
  25. // home 按钮按下(及所有中断的最终处理)
  26. - (void)applicationSuspend:(struct __GSEvent *)event;
  27. // 屏幕解锁
  28. - (void)applicationDidResumeFromUnderLock:(struct __GSEvent *)event;
  29. // 从中断事件中恢复(接完电话)
  30. - (void)applicationDidResumeForEventsOnly:(struct __GSEvent *)event;
  31. // 状态恢复(从所有中断中恢复)
  32. - (void)applicationDidResume:(struct __GSEvent *)event;
  33. // 程序结束
  34. - (void)applicationWillTerminate;
  35. @end