ZWSlideViewController 0.1.5

ZWSlideViewController 0.1.5

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release May 2017

Maintained by Square.



  • By
  • square

ZWSlideViewController is a view controller container that manages a customizable sliding views and menus.

Screenshots

Screenshot

Usage

To show slide page use the following code:

Step 1

create a class inherits from the ZWSViewController

@interface ZWViewController : ZWSViewController

@end

Step 2

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

Author

@squarezw , @lamo

License

ZWSlideViewController is available under the MIT license. See the LICENSE file for more info.