Skip to content

dkhamsing/ScrollTab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ScrollTab

A scroll tab alternative to UISegmentedControl.

Install

pod 'ScrollTab'

Manual

Add the files in the ScrollTab folder to your project.

Usage

#import "ScrollTab.h"

  // ...

  ScrollTabConfig *config = [[ScrollTabConfig alloc] init];
  config.items = @[@"zero", @"one", @"two", @"three", @"four"];

  ScrollTab *tab = [[ScrollTab alloc] init];
  tab.config = config;  
  tab.selected = ^(NSString *noop, NSInteger index) {
      NSLog(@"selected tab with index %@", @(index));
  };

  // Layout
  [self.view addSubview:tab];
  
  // ...

Customize

Change the control's layout, item font/colors and more using ScrollTabConfig.

Demo

ScrollTab includes a sample project.

Compatibility

This project was tested with iOS 10, see the 1.x tags for older versions.

Contact

License

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