Closed X901 closed 8 years ago
I fix the error , after convert the library to Swift 3 you will notice the problem in this line if isnan(previousYOffset) == false and the error " 'isnan' is unavailable: use the isNaN property. "
change this line from " if isnan(previousYOffset) == false " to " if previousYOffset.isNaN == false "
After that the library will work in Swift 3
I have just updated the library with swift3 support. Please use v1.0.0
Hi , I have this issue after I convert my project to Swift 3