FileManager.h
上传用户:xy800802
上传日期:2020-12-29
资源大小:194k
文件大小:1k
- #import <Foundation/Foundation.h>
- #import <CoreFoundation/CoreFoundation.h>
- #import <UIKit/UIKit.h>
- #import <UIKit/UIApplication.h>
- #import <UIKit/CDStructures.h>
- #import <UIKit/UIPushButton.h>
- #import <UIKit/UIThreePartButton.h>
- #import <UIKit/UINavigationBar.h>
- #import <UIKit/UIWindow.h>
- #import <UIKit/UIView-Hierarchy.h>
- #import <UIKit/UIHardware.h>
- #import <UIKit/UITable.h>
- #import <UIKit/UITableCell.h>
- #import <UIKit/UITableColumn.h>
- @interface FileManager : UIApplication {
- UIWindow *window;
- UIView *mainView;
- }
- // 程序加载完毕
- - (void) applicationDidFinishLaunching: (id) unused;
- // 屏幕锁定
- - (void)applicationWillSuspendUnderLock:(struct __GSEvent *)event;
- // 被电话等事件中断
- - (void)applicationWillSuspendForEventsOnly:(struct __GSEvent *)event;
- // home 按钮按下(及所有中断的最终处理)
- - (void)applicationSuspend:(struct __GSEvent *)event;
- // 屏幕解锁
- - (void)applicationDidResumeFromUnderLock:(struct __GSEvent *)event;
- // 从中断事件中恢复(接完电话)
- - (void)applicationDidResumeForEventsOnly:(struct __GSEvent *)event;
- // 状态恢复(从所有中断中恢复)
- - (void)applicationDidResume:(struct __GSEvent *)event;
- // 程序结束
- - (void)applicationWillTerminate;
- @end