Giter Club home page Giter Club logo

glxsegmentedcontrol's Introduction

GLXSegmentedControl

CocoaPods license MIT Carthage compatible

Description

  • Custom segmented control for iOS 9 and above.
  • Written in Swift.
  • Supports both images and text.
  • Supports vertically organised segments.
  • If font size needs to be lowered for one segment, it can automatically adjust font in other segments.
  • More customisible than UISegmentedControl and easier to expand with new style.

Installation

Carthage

Add github "glenmax-ltd/GLXSegmentedControl" to your Cartfile.

CocoaPods

Add pod 'GLXSegmentedControl' to your Podfile.

Manual

Drag GLXSegmentedControl.swift, GLXSegment.swift and GLXSegmentAppearance.swift into your Xcode project.

Usage

Step 1

Initialise GLXSegmentedControl: You can simply use GLXSegmentedControl(frame:) to initialise your segment view by using the default properties. But mostly, you may want to use GLXSegmentedControl(frame:, segmentAppearance:) to make it look more customised. The parameter segmentAppearance: reads a GLXSegmentAppearance instance. You can find what attributes it supports in GLXSegmentAppearance class.

E.g.:

let appearance = GLXSegmentAppearance()
appearance.segmentOnSelectionColour = UIColor(red: 245.0/255.0, green: 174.0/255.0, blue: 63.0/255.0, alpha: 1.0)
appearance.segmentOffSelectionColour = UIColor.whiteColor()
appearance.titleOnSelectionFont = UIFont.systemFontOfSize(12.0)
appearance.titleOffSelectionFont = UIFont.systemFontOfSize(12.0)
appearance.contentVerticalMargin = 10.0

let segmentedControl = GLXSegmentView(frame: SomeFrame, dividerColour: UIColor(white: 0.95, alpha: 0.3), dividerWidth: 1.0, segmentAppearance: appearance)

Step 2

Add action for UIControlEvents.ValueChanged, and implement the action method.

E.g. segmentedControl.addTarget(self, action: #selector(YourViewController.selectSegmentInSegmentView(_:)), forControlEvents: .ValueChanged)

Step 3

Add segments to your segmented control.

E.g.:

segmentedControl.addSegmentWithTitle("Segment 1", onSelectionImage: UIImage(named: "target_light"), offSelectionImage: UIImage(named: "target"))
segmentedControl.addSegmentWithTitle("Segment 2", onSelectionImage: UIImage(named: "handbag_light"), offSelectionImage: UIImage(named: "handbag"))
segmentedControl.addSegmentWithTitle("Segment 3", onSelectionImage: UIImage(named: "globe_light"), offSelectionImage: UIImage(named: "globe"))

Support Vertical Mode

You can organise all segments vertically by setting the organiseMode as .vertical. It is set to .horizontal by default.

E.g. segmentedControl.organiseMode = .vertical

Screenshots

glxsegmentedcontrol's People

Contributors

andriygo avatar sima-11 avatar michallaskowski avatar tarigancana avatar gelliogao avatar yhirano avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.