Skip to content

Instantly share code, notes, and snippets.

View augustorsouza's full-sized avatar

Augusto Souza augustorsouza

View GitHub Profile
import UIKit
public protocol ConstraintStateMachineType: class {
// MARK: Types
typealias State: RawRepresentable
// MARK: Properties
var state: State? { get set }
var allConstraints: [NSLayoutConstraint] { get }