vds_ios/VDS/Extensions/CATransaction.swift
Matt Bruce ef5cb2ae84 added checkbox
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-02 15:09:13 -05:00

21 lines
425 B
Swift

//
// CATransaction.swift
// VDS
//
// Created by Matt Bruce on 8/2/22.
//
import Foundation
import UIKit
extension CATransaction {
/// Performs changes without activating animation actions.
public static func withDisabledAnimations(_ actionBlock: Blocks.ActionBlock) {
CATransaction.begin()
CATransaction.setDisableActions(true)
actionBlock()
CATransaction.commit()
}
}