-
Notifications
You must be signed in to change notification settings - Fork 825
Open
Labels
Description
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 != self.selectedSegmentIndex) && segment < sectionsCount) {
// Check if we have to do anything with the touch event
if (self.isTouchEnabled)
[self setSelectedSegmentIndex:segment animated:self.shouldAnimateUserSelection notify:YES];
}