kgn / InAppSettings

InAppSettings provides a view controller that displays the application's Settings.bundle as it appears in the iPhone settings. Allowing the same preferences in app and in the iPhone settings.
MIT License
233 stars 33 forks source link

Fixing the Slider bug in iOS7 #30

Closed LittleOrangeC closed 10 years ago

LittleOrangeC commented 10 years ago

Sliders need to be at least 36pix

kgn commented 10 years ago

Does this restrict the slider width at all?

LittleOrangeC commented 10 years ago

No, the autoresizing automatically expands it:

self.valueSlider.autoresizingMask = UIViewAutoresizingFlexibleWidth;

So it still looks normal. Of course it looked normal before, but for some reason the initWithFrame:CGRectZero did not allow for touch events to be passed.

kgn commented 10 years ago

thanks!