Closed iac0 closed 7 years ago
@iac0 So I would need a tad bit more context on the setup of your view to see exactly why nothing is happening. But some suggestions to look for, is your red view inside of the animationView
? This animationView
is being told to animate all of the subviews. If there are no subviews of the animationView
then nothing will happen. If that doesn't work then we can discuss more about the setup of your view layout to see if there is anything happening there.
@iac0 Any updates on this issue?
Hello @iac0 I am going to close this issue due to inactivity. If this was not resolved please feel free to open a new issue. Thanks!
Hi, i have downloaded the example app and i put as rootViewController of the window yours ExampleViewController where i put a simple square red view ( code above ). Nothings happen, why? ` import UIKit import Spruce
class ExampleViewController: UIViewController { let animations: [StockAnimation] var sortFunction: SortFunction? var animationView: UIView? = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) var timer: Timer?
}`