SJLoadingView
SJLoadingView copied to clipboard
repeatCount overflow
rotationAnim.repeatCount = CGFLOAT_MAX;
repeatCount is float type, so CGFLOAT_MAX cause overflow。you may use HUGE_VALF replace it。
rotationAnim.repeatCount = HUGE_VALF;