Skip to content

Instantly share code, notes, and snippets.

@0si43
0si43 / ButtonWrapperUsingUIViewPropertyAnimator.swift
Created August 26, 2021 07:55
A sample code using UIViewPropertyAnimator
import UIKit
/// ラッパークラス
final class ButtonWrapperUsingUIViewPropertyAnimator {
private var button: UIButton!
private var bar: UIView!
private let completion: () -> Void
init(completion: @escaping () -> Void) {
self.completion = completion