Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kenshin03/8307767 to your computer and use it in GitHub Desktop.
Save kenshin03/8307767 to your computer and use it in GitHub Desktop.
- (void)viewDidLoad
{
[super viewDidLoad];
// animate menus
[self animateMenuOnStart];
[self.menuViewController animateHideMenuButtons];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - Initialization
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
[self setupViewFrameBounds];
[self setupNavigationBar];
[self addSubviewTree];
[self setUpCoverFlowPagesViewController];
}
return self;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment