HMSegmentedControl icon indicating copy to clipboard operation
HMSegmentedControl copied to clipboard

A highly customizable drop-in replacement for UISegmentedControl.

Results 17 HMSegmentedControl issues
Sort by recently updated
recently updated
newest added

Thanks! I am looking forward to adding a property that allows for repeated selection. eg: @property(nonatomic, getter = isRepeatSelectedEnabled) BOOL repeatSelectedEnabled; then use in here: if ((self.isRepeatSelectedEnabled ? : segment...

todo

To handle touch common segment, it is need to add a condition. `if (segment != self.selectedSegmentIndex && segment < sectionsCount) { // Check if we have to do anything with...

- Alignment mode for the title layer. - Content insets for the scrollView. - Option to disable scrolling to the selected segment on user selection. I needed this for my...

self.cateSegmentControl.type = HMSegmentedControlTypeTextImages; self.cateSegmentControl.imagePosition = HMSegmentedControlImagePositionLeftOfText; self.cateSegmentControl.textImageSpacing = 6.f; self.cateSegmentControl.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; Here I added the code however the image and title not align vertical, the title is a little...