WCLLoadingView icon indicating copy to clipboard operation
WCLLoadingView copied to clipboard

iOS动画进阶 - 手摸手教你写 Slack 的 Loading 动画

Results 1 WCLLoadingView issues
Sort by recently updated
recently updated
newest added

```objc //三角形两边的比例 let scale = (lineLength - 2*margin)/(lineLength - lineWidth) for i in 0...3 { var keypath = "transform.translation.y" if i%2 == 1 { keypath = "transform.translation.x" } let lineAnimationTwo...