DGActivityIndicatorView icon indicating copy to clipboard operation
DGActivityIndicatorView copied to clipboard

DGActivityIndicatorThreeDotsAnimation Animation is wrong

Open AlbertRenshaw opened this issue 5 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);

AlbertRenshaw avatar Jan 06 '19 20:01 AlbertRenshaw