Skip to content

Instantly share code, notes, and snippets.

@aydenp
Last active April 2, 2018 11:15
Show Gist options
  • Save aydenp/c6fe9099fd71b02a11f471cc74d97db4 to your computer and use it in GitHub Desktop.
Save aydenp/c6fe9099fd71b02a11f471cc74d97db4 to your computer and use it in GitHub Desktop.
repeating code is bad
//
// UIEdgeInsets+All.swift
//
// Created by Ayden Panhuyzen on 2018-04-02.
// Copyright © 2018 Ayden Panhuyzen. All rights reserved.
// https://gist.github.com/aydenp
//
import UIKit
extension UIEdgeInsets {
init(all inset: CGFloat) {
self.init(top: inset, left: inset, bottom: inset, right: inset)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment