Closed AndyIbanez closed 4 years ago
Figured it out.
I was also getting this in the console:
2020-03-18 10:20:26.786758-0400 JustDesign[12539:12145945] [Storyboard] Unknown class CircularSlider in Interface Builder file.
I forgot I had to set the Module
in Interface builder. Select your slider and then in Module write HGCircularSlider
. It will work properly then.
I'm having a weird issue that I don't know how to fix.
I dragged a view through storyboard and changed its class to
CircularView
. In code, I'm setting thenumberOfRounds
property as so:circularSlider.numberOfRounds = 1
My app crashes with
EXC_BAD_ACCESS
.I don't see anything strange in the definition of the method in the source code, so I don't know why this isn't working. If I customize the view via Interface Builder, nothing shows up.
I installed the dependency with CocoaPods. Currently using v2.2.0.
Trying to debug the app:
And again, the
numberOfRows
property is not even set as an optional in the source code, so I don't think it's crashing due to it being nil? I'm very dumbfounded with this problem.