You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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];
}
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: