suzuki-0000 / CountdownLabel

Simple countdown UILabel with morphing animation, and some useful function.
MIT License
1.01k stars 192 forks source link

Fix for another "The compiler is unable to type-check this expression… #59

Closed iranjith4 closed 3 years ago

iranjith4 commented 3 years ago

Fix for another "The compiler is unable to type-check this expression…

Changed return c * ($0 * $0 * $0 * $0 * $0 + 1.0) + b to

let m = $0 * $0 * $0 * $0 * $0
return c * (m + 1.0) + b