Last active
April 2, 2018 11:15
-
-
Save aydenp/c6fe9099fd71b02a11f471cc74d97db4 to your computer and use it in GitHub Desktop.
repeating code is bad
This file contains hidden or 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
// | |
// 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