SmoothCheckBox
SmoothCheckBox copied to clipboard
The custom CheckBox with animation for iOS.
Results
1
SmoothCheckBox issues
Sort by
recently updated
recently updated
newest added
为了和Android统一 ,在项目中用到了,但是当我快速点击的时候,项目出现了崩溃 查找问题,确定问题发生在: ``` #pragma mark -- animation // border 基础动画 - (void)startBorderLayerAnimation { if (self.isChecked) { ``` 这一行> for (CALayer *subLayer in self.borderCircle.sublayers) { ``` [subLayer removeFromSuperlayer]; } }...