35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
@protocol OFApplicationDelegate
/**
* This method is called when the application was initialized and is running
* now.
*/
- (void)applicationDidFinishLaunching;
/**
* This method is called when the application will terminate.
*/
- (void)applicationWillTerminate;
@end
/**
|
>
>
>
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
@protocol OFApplicationDelegate
/**
* This method is called when the application was initialized and is running
* now.
*/
- (void)applicationDidFinishLaunching;
#ifdef OF_HAVE_OPTIONAL_PROTOCOLS
@optional
#endif
/**
* This method is called when the application will terminate.
*/
- (void)applicationWillTerminate;
@end
/**
|