//
// HMSegmentedControl.h
// HMSegmentedControl
//
// Created by Hesham Abd-Elmegid on 23/12/12.
// Copyright (c) 2012-2015 Hesham Abd-Elmegid. All rights reserved.
//
//指示器的样式
typedef NS_ENUM(NSInteger, HMSegmentedControlSelectionStyle) {
//指示器和文字同宽
HMSegmentedControlSelectionStyleTextWidthStripe, // Indicator width will only be as big as the text width
//指示器和segment同宽
HMSegmentedControlSelectionStyleFullWidthStripe, // Indicator width will fill the whole segment
//矩形指示器
HMSegmentedControlSelectionStyleBox, // A rectangle that covers the whole segment
//箭头指示器
HMSegmentedControlSelectionStyleArrow // An arrow in the middle of the segment pointing up or down depending on `HMSegmentedControlSelectionIndicatorLocation`
};
typedef NS_ENUM(NSInteger, HMSegmentedControlSegmentWidthStyle) {
//宽度fix
HMSegmentedControlSegmentWidthStyleFixed, // Segment width is fixed
//segment的宽度和text的宽度一致
HMSegmentedControlSegmentWidthStyleDynamic, // Segment width will only be as big as the text width (including inset)
};