Skip to content

Instantly share code, notes, and snippets.

View jabruder's full-sized avatar

Jason Bruder jabruder

View GitHub Profile
@jabruder
jabruder / pasteboard.swift
Created September 7, 2020 14:11 — forked from kristopherjohnson/pasteboard.swift
Utility functions to copy/paste text
import Foundation
#if os(iOS)
import UIKit
#else
import AppKit
#endif
/// Return string value currently on clipboard
func getPasteboardContents() -> String? {