A Simple Class for making Static UITableViews within a Sidebar
Eternal helps you be more efficent.
Making static viewcontrollers is way too tedious - you have to include all the necessary delegate methods in order to set it up.
Eternal uses UIKitDynamics and makes use of a custom class, GMTray.
#import "GMTray.h"
will do the trick.
GMPush is incredible easy to use. Take the most basic example of sending a push Notification:
GMTray *tray = [[GMTray alloc]init];
tray.view.frame = CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height);
[tray setupStaticArray:@[@"Home",@"About",@"Information",@"Detail",@"Apps", @"Settings"]];
[self addChildViewController:tray];
[self.view addSubview:tray.view];
- Fork it!
- Create your feature branch:
git checkout -b newFeature
- Commit your changes:
git commit -am 'Detail your commit'
- Push to the branch:
git push origin newFeature
- Submit a pull request
- You're done!