We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With xcode 8.3 and Swift 3.1 there are two minor build errors that need to be fixed as M_PI and M_PI_4 are deprecated.
In SAConfettiView.swift simply update:
confetti.emissionLongitude = CGFloat(M_PI) confetti.emissionRange = CGFloat(M_PI_4)
to:
confetti.emissionLongitude = CGFloat(Double.pi) confetti.emissionRange = CGFloat(Double.pi/4)
The text was updated successfully, but these errors were encountered:
I created a pull request with this update: #38
Sorry, something went wrong.
@saldous Hi, in the meantime you can use https://github.com/hyperoslo/Cheers
No branches or pull requests
With xcode 8.3 and Swift 3.1 there are two minor build errors that need to be fixed as M_PI and M_PI_4 are deprecated.
In SAConfettiView.swift simply update:
to:
The text was updated successfully, but these errors were encountered: