Created
August 4, 2012 21:53
-
-
Save thiagoricieri/3260223 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import "NewCardViewController.h" | |
| @interface NewCardViewController () | |
| @end | |
| @implementation NewCardViewController | |
| #pragma - Initialization of View stack | |
| - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { | |
| self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; | |
| if (self) { | |
| // Custom initialization | |
| } | |
| return self; | |
| } | |
| - (void)viewDidLoad { | |
| //finalizando | |
| [super viewDidLoad]; | |
| } | |
| - (void)didReceiveMemoryWarning { | |
| [super didReceiveMemoryWarning]; | |
| } | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment