Skip to content

Instantly share code, notes, and snippets.

View louisdh's full-sized avatar

Louis D'hauwe louisdh

  • Apple
  • San Jose, CA
View GitHub Profile
@louisdh
louisdh / NYSKeyboardHelper.swift
Last active March 10, 2023 21:47 — forked from matthiasnys/NYSKeyboardHelper.swift
A Keyboard helper for your Swift Keyboard troubles.
//
// NYSKeyboardHelper.swift
// B-NYS GCV
//
// Created by Matthias Nys on 18/03/2017.
// Copyright © 2017 B-NYS. All rights reserved.
//
import UIKit
@louisdh
louisdh / UIPaddedLabel.swift
Last active December 19, 2016 15:10 — forked from mikeMTOL/UIPaddedLabel.swift
Swift 3
import Foundation
import UIKit
@IBDesignable
class UIPaddedLabel: UILabel {
@IBInspectable var topPadding: CGFloat = 0 {
didSet {
updatePadding()
}