Skip to content

MendyK/BWSegmentedControl

Repository files navigation

BWSegmentedControl

A segmented control with a ball indicator

Partially inspired by this post on Dribbble

alt tag

alt tag

Getting started

To start, create an array of images and an array of titles (make sure both arrays have the same number of items).

UIImage *firstImage = [UIImage imageNamed:@"firstImage"];
UIImage *secondImage = [UIImage imageNamed:@"secondImage"];
    
NSArray *images = @[ firstImage, secondImage ];
NSArray *titles = @[@"First title", @"Second title"];
    

Initialize the segmented control with those arrays and add self as a target.

    
BWSegmentedControl *segmentedControl = [BWSegmentedControl segmentedControlWithImages:images titles:titles];
[segmentedControl addTarget:self action:@selector(segmentMoved:) forControlEvents:UIControlEventValueChanged];
//Set frame here

Finally, add it to your view.

self.navigationItem.titleView = segmentedControl;

CocoaPods

pod 'BWSegmentedControl', :git => 'https://github.com/MendyK/BWSegmentedControl'

License

  The MIT License (MIT)

Copyright (c) 2015 Mendy Krinsky

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

A segmented control with a ball indicator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published