Quick Fix for Lower Value not set when Min Range is specified first... #1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

In the setters, lowerValue depends on upperValue when minRange is set. If upperValue is still 0 then this causes lowerValue to not be set.
This commit is a quick fix (hack) that just calls setLowerValue a second time in the setLowerValue:upperValue method. It still doesn't solve the problem of the client using the properties to initialise the lower and upper values.
A better fix might be to have lower/upperValue initialise to -/+FLT_MAX or have lower value only adjust for minRange if (upperValue != some-pre-decided-init)...it's probably worth a bit more thought...
Thx for the component. I've given it 5 stars on CocoaControls :)