ZWSlideViewController
is a view controller container that manages a customizable sliding views and menus.
ZWSlideViewController is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "ZWSlideViewController"

To show slide page use the following code:
create a class inherits from the ZWSViewController
@interface ZWViewController : ZWSViewController @end
implements the required methods
- (void)loadData { self.menuTitles = @[@"Drama", @"Family", @"Fantasy", @"Thriller", @"Horror", @"Comedy"]; } - (UIView *)contentViewForPage:(ZWSPage *)page atIndex:(NSInteger)index { UITableView *tableView = [[UITableView alloc] initWithFrame:page.bounds]; [tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"kCellIdentifier"]; tableView.dataSource = self; tableView.backgroundColor = [UIColor colorWithRed:0.5 green:0.1*index blue:0.2*index alpha:1]; return tableView; }
or put any views what you want
- (UIView *)contentViewForPage:(ZWSPage *)page atIndex:(NSInteger)index { UIView *view = [[UIView alloc] init]; view.backgroundColor = [UIColor colorWithRed:0.5 green:0.1*index blue:0.2*index alpha:1]; return view; }
if you have a asynchronous loading requests data to refresh the slide page, you need invoke following code after requests finish
[self refreshViews];
you can also put some adjusted style codes here
self.sectionBar.selectedTextColor = [UIColor blueColor]; self.sectionBar.nomarlTextColor = [UIColor redColor]; self.sectionBar.backgroundColor = [UIColor blackColor]; self.menuHeight = 64.0f;
Take a look at the Example project to see how to use customization using more
ZWSlideViewController is available under the MIT license. See the LICENSE file for more info.