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
animation like this dont work with pod :((
class ColorCell : UICollectionViewCell {
override var isHighlighted: Bool{ didSet{ if isHighlighted{ //self.alpha = 0.5 UIView.animate(withDuration: 0.27, delay: 0.0, usingSpringWithDamping: 1, initialSpringVelocity: 1.0, options: [.curveEaseOut, .beginFromCurrentState], animations: { self.transform = self.transform.scaledBy(x: 0.92, y: 0.92) }, completion: nil) } else { //self.alpha = 1 UIView.animate(withDuration: 0.27, delay: 0.0, usingSpringWithDamping: 1, initialSpringVelocity: 1.0, options: [.curveEaseOut, .beginFromCurrentState], animations: { self.transform = CGAffineTransform.identity }, completion: nil) } } }
}
The text was updated successfully, but these errors were encountered:
with large titiles bad animation( fix?
Sorry, something went wrong.
No branches or pull requests
animation like this dont work with pod :((
class ColorCell : UICollectionViewCell {
}
The text was updated successfully, but these errors were encountered: