FoundationExtension
FoundationExtension is common Foundation/UIKit/Cocoa shortcuts and snippets collection.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
UIAViewController.h
Go to the documentation of this file.
1 //
2 // UIAViewController.h
3 // FoundationExtension
4 //
5 // Created by Jeong YunWon on 13. 5. 24..
6 // Copyright (c) 2013 youknowone.org. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 @protocol UIAViewLifeCycle <NSObject>
12 
13 @optional
14 - (void)viewDidLoad;
15 - (void)viewWillAppear:(BOOL)animated;
16 - (void)viewDidAppear:(BOOL)animated;
17 - (void)viewWillDisappear:(BOOL)animated;
18 - (void)viewDidDisappear:(BOOL)animated;
19 - (void)viewWillUnload __deprecated;
20 - (void)viewDidUnload __deprecated;
22 
23 @end
24 
28 @interface UIAViewController : UIViewController
29 
30 @property(nonatomic, strong) UIView<UIAViewLifeCycle> *view;
31 
32 @end
Definition: UIAViewController.h:11
UIView with refined lifecycle. (testing)
Definition: UIAViewController.h:28
void didReceiveMemoryWarning()
UIView< UIAViewLifeCycle > * view
Definition: UIAViewController.h:30