GithubHelp home page GithubHelp logo

hkgittt / segmentio Goto Github PK

View Code? Open in Web Editor NEW

This project forked from taemooncho/segmentio

0.0 2.0 0.0 10.69 MB

Animated top/bottom segmented control written in Swift.

Home Page: https://yalantis.com/

License: MIT License

Ruby 1.01% Objective-C 1.52% Shell 19.04% Swift 78.43%

segmentio's Introduction

##Segmentio Platform License Swift 2.2.x Carthage compatible

Animated top/bottom segmented control written in Swift.

Preview

Check this project on dribbble.

##Requirements

iOS 8.x, Swift 2.2.x

##Installation

####CocoaPods

use_frameworks! 

pod 'Segmentio', '~> 1.0'

(CocoaPods v1.0.1 or later required. See this blog post for details.)

####Carthage

github "Yalantis/Segmentio" ~> 1.0

##Usage ####Import Segmentio module

import Segmentio

####Init You can initialize a Segmentio instance from code:

var segmentioView: Segmentio!

let segmentioViewRect = CGRect(x: 0, y: 0, width: UIScreen.mainScreen().bounds.width, height: 125)
segmentioView = Segmentio(frame: segmentioViewRect)
view.addSubview(segmentioView)

or

add a UIView instance in your .storyboard or .xib, set Segmentio class and connect IBOutlet:

@IBOutlet weak var segmentioView: Segmentio!

####Setup Segmentio

segmentioView.setupContent(
	content: [SegmentioItem],
	style: SegmentioStyle,
	options: SegmentioOptions?
)

To start with default options you can just pass nil to the options parameter.

segmentioView.setupContent(
	content: [SegmentioItem],
	style: SegmentioStyle,
	options: nil
)

####Configuring items In order to set items you need to create an array of SegmentioItem instances:

var content = [SegmentioItem]()

let tornadoItem = SegmentioItem(
	title: "Tornado",
	image: UIImage(named: "tornado")
)
content.append(tornadoItem)

####Handling selection You can specify selected item manually:

segmentioView.selectedSegmentIndex = 0

####Handling callback

segmentioView.valueDidChange = { segmentio, segmentIndex in
	print("Selected item: ", segmentIndex)
}

####Customization Segmentio can be customized by passing an instance of SegmentioOptions struct:

SegmentioOptions(
	backgroundColor: UIColor.whiteColor(),
	maxVisibleItems: 3,
	scrollEnabled: true,
	indicatorOptions: SegmentioIndicatorOptions,
	horizontalSeparatorOptions: SegmentioHorizontalSeparatorOptions,
	verticalSeparatorOptions: SegmentioVerticalSeparatorOptions,
	imageContentMode: UIViewContentMode.Center,
	labelTextAlignment: NSTextAlignment.Center,
	segmentStates: SegmentioStates // tuple of SegmentioState (defaultState, selectState, highlightedState)
)

Selection indicator can be customized by passing an instance of SegmentioIndicatorOptions:

SegmentioIndicatorOptions(
	type: .Bottom,
	ratio: 1,
	height: 5,
	color: UIColor.orangeColor()
)

Horizontal borders can be customized by passing an instance of SegmentioHorizontalSeparatorOptions:

SegmentioHorizontalSeparatorOptions(
	type: SegmentioHorizontalSeparatorType.TopAndBottom, // Top, Bottom, TopAndBottom
	height: 1,
	color: UIColor.grayColor()
)

Separators between segments can be customized by passing an instance of SegmentioVerticalSeparatorOptions:

SegmentioVerticalSeparatorOptions(
	ratio: 0.6 // from 0.1 to 1
	color: UIColor.grayColor()
)

In order to set SegmentioStates you need to create a tuple of SegmentioState instances:

SegmentioStates(
	defaultState: segmentioState(
		backgroundColor: UIColor.clearColor(),
		titleFont: UIFont.systemFontOfSize(UIFont.smallSystemFontSize()),
		titleTextColor: UIColor.blackColor()
	),
	selectState: segmentioState(
		backgroundColor: UIColor.orangeColor(),
		titleFont: UIFont.systemFontOfSize(UIFont.smallSystemFontSize()),
		titleTextColor: UIColor.whiteColor()
	),
	highlightedState: segmentioState(
		backgroundColor: UIColor.lightGrayColor().colorWithAlphaComponent(0.6),
		titleFont: UIFont.boldSystemFontOfSize(UIFont.smallSystemFontSize()),
		titleTextColor: UIColor.blackColor()
	)
)

####Let us know! We’d be really happy if you sent us links to your projects where you use our component. Just send an email to [email protected] And do let us know if you have any questions or suggestion regarding the animation.

P.S. We’re going to publish more awesomeness wrapped in code and a tutorial on how to make UI for iOS (Android) better than better. Stay tuned!

##License

The MIT License (MIT)

Copyright © 2016 Yalantis

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.

segmentio's People

Contributors

taemooncho avatar serejahh avatar

Watchers

James Cloos avatar HK Yoon 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.