DGActivityIndicatorView icon indicating copy to clipboard operation
DGActivityIndicatorView copied to clipboard

DGActivityIndicatorThreeDotsAnimation Animation is wrong

Open Apps4LifeLLC opened this issue 6 years ago • 0 comments

The animation for DGActivityIndicatorThreeDotsAnimation is not staggered like in the gif preview. All dots grow and shrink at the same time instead of staggering the way the gif on this repository shows. The solution can be made in DGActivityIndicatorThreeDotsAnimation.m

Change: animation.beginTime = beginTime;

To: animation.beginTime = beginTime+((0.5f/3.0f)*(float)i);

Apps4LifeLLC avatar Jan 06 '19 20:01 Apps4LifeLLC