I have some square UIView
, inside I have an image that looks like a sin
signal.
I would like to move that image inside this view from left to right but create infinite effect - so it seems that the sin signal is always going from left to right.
The only way I see is to animate it to move right and when its there simply add it again on left, then remove the previous, etc.
I suspect this would cause memory issues if done on multiple views inside a cell. Is that the right way to go ?