SmartSegmentedControl 0.1.2

SmartSegmentedControl 0.1.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jul 2020

Maintained by Eugene Shevtsov.




  • By
  • Eugene Shevtsov

SmartSegmentedControl

Version License Platform

This control was created to solve issue, that native UISegmentedControl has. Reffer to SmartSegmentedControlSwift for swift version. UISegmentedControl has issue with apportionsSegmentWidthsByContent setting (adjust segments width proportionally to content). Often, it appears that control bounds are wider, than actual segments width. See screenshot bellow - I put yellow color as layer background.

UISegmentedControl

With SmartSegmentedControl issue is fixed and same segmented control will look like:

SmartSegmentedControl

Also, SmartSegmentedControl introduces “smart” mode, where, if there is enough room, every segment, that needs to be wider than average width, gets enough room to display content (which is usually less then in proportional mode). If there is no enough room for all content - segments width is distributed proportionally (fixed, of course :) ).

NOTE. SmartSegmentedControl is designed and test only to work with segments with titles, not with images.

Usage

SmartSegmentedControl provides two new properties to adjust it's behaviour:

  • @property (nonatomic, assign) IBInspectable BOOL smartAdjustment;
  • @property (nonatomic, assign) IBInspectable BOOL fixNativeProportionalSizing;

As you can see, you can change them in runtime, or configure in IB.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

SmartSegmentedControl is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "SmartSegmentedControl"

License

SmartSegmentedControl is available under the MIT license. See the LICENSE file for more info.