This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Executes a closure and returns resulting generic value | |
/// Idea to replace 'executing closure pattern' used to assign values with some logic. | |
/// Example: | |
/// ``` | |
/// let image: UIImage? = make { | |
/// if #available(iOS 13.0, *) { | |
/// return UIImage(systemName: "plus.square.fill.on.square.fill") | |
/// } | |
/// return UIImage(named: "fallbackImage") | |
/// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension CATransaction { | |
/// Executes the provided `actions` closure wrapped in `CATransaction`. | |
/// Optionally adds all the specific properties to commit the transaction with | |
/// - Parameters: | |
/// - duration: Duration of transaction | |
/// - timingFunction: Specific timing function to use with transaction | |
/// - disableActions: Wether actual animation should happen during transaction | |
/// - actions: What to do while transaction is commited | |
/// - completion: Closure to be executed when transaction is completes | |
/// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension CFRunLoop { | |
static func performNext(work: @escaping () -> Void) { | |
CFRunLoopPerformBlock(CFRunLoopGetMain(), CFRunLoopMode.defaultMode.rawValue, work) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
/// Adds a `configure` method with a closure that is executed with `Self` as a parameter | |
protocol Configurable { } | |
extension Configurable { | |
/// Configures the instance with a closure that is executed with `Self` as a parameter | |
/// - Parameter configurer: Closure exectured immediately with `Self` as a parameter | |
/// - Parameter instance: Use this parameter to 'configure' the instance | |
func configure(with configurer: (_ instance: Self) -> Void) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TimelineLayout.swift | |
// OKVideo | |
// | |
// Created by Pim Coumans on 12/11/2020. | |
// Copyright © 2020 pixelrock. All rights reserved. | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
extension CACornerMask { | |
static let all: CACornerMask = [ | |
.layerMaxXMaxYCorner, .layerMaxXMinYCorner, .layerMinXMaxYCorner, .layerMinXMinYCorner | |
] | |
} | |
extension UIView { | |
func roundCorners(by radius: CGFloat, corners: CACornerMask = .all) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LayerView<Layer: CALayer>: UIView { | |
override static var layerClass: AnyClass { | |
return Layer.self | |
} | |
var castedLayer: Layer { | |
return super.layer as! Layer | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
// Based on example by Thomas Theunen: https://thomastheunen.eu/2017/07/04/diving-into-synology-quickconnect-and-creating-a-javascript-library/ | |
struct QuickConnect { | |
private static let endpointURL = URL(string: "https://global.quickconnect.to/Serv.php")! | |
enum Error: Swift.Error { | |
case noAddressFound |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// let targetSize = CGSize(width: 100, height: 100) // whatever you want | |
var transform = videoAssetTrack.preferredTransform | |
let naturalSize = videoAssetTrack.naturalSize | |
let videoSize = CGRect(origin: .zero, size: naturalSize).applying(videoAssetTrack.preferredTransform).size | |
let rotation = atan2(transform.b, transform.a) | |
let isRotated = rotation.remainder(dividingBy: .pi) > 0.01 | |
let offset = CGPoint.zero.applying(transform.inverted()) |