Skip to content

Latest commit

 

History

History
60 lines (36 loc) · 1.11 KB

File metadata and controls

60 lines (36 loc) · 1.11 KB

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.