AnimationSubview.swift 292 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  AnimationSubview.swift
//  lottie-swift
//
//  Created by Brandon Withrow on 2/4/19.
//

#if canImport(UIKit)
import UIKit

/// A view that can be added to a keypath of an AnimationView
public final class AnimationSubview: UIView {

  var viewLayer: CALayer? {
    layer
  }

}
#endif