We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RangeSeekSlider
The text was updated successfully, but these errors were encountered:
You have to change in pod file. On the place of "$" you can put string you want..
private func updateLabelValues() { minLabel.isHidden = hideLabels || disableRange maxLabel.isHidden = hideLabels
if let replacedString = delegate?.rangeSeekSlider(self, stringForMinValue: selectedMinValue) { minLabel.string = replacedString } else { minLabel.string = "$ " + numberFormatter.string(from: selectedMinValue as NSNumber)! } if let replacedString = delegate?.rangeSeekSlider(self, stringForMaxValue: selectedMaxValue) { maxLabel.string = replacedString } else { maxLabel.string = "$ " + numberFormatter.string(from: selectedMaxValue as NSNumber)! } if let nsstring = minLabel.string as? NSString { minLabelTextSize = nsstring.size(withAttributes: [.font: minLabelFont]) } if let nsstring = maxLabel.string as? NSString { maxLabelTextSize = nsstring.size(withAttributes: [.font: maxLabelFont]) } }
Sorry, something went wrong.
No branches or pull requests
New Issue Checklist
RangeSeekSlider
to the latest versionIssue Description
Environment
The text was updated successfully, but these errors were encountered: