Skip to content

Instantly share code, notes, and snippets.

@zyrx
Last active March 11, 2020 14:21
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save zyrx/67fa2f42b567d1d4c8fef434c7987387 to your computer and use it in GitHub Desktop.
Save zyrx/67fa2f42b567d1d4c8fef434c7987387 to your computer and use it in GitHub Desktop.
Make UILabel Copyable in Swift 3. Special thanks to Stephen Radford and his "Make UILabel Copyable in Swift" article http://stephenradford.me/make-uilabel-copyable/
//
// CopyableLabel.swift
//
// Created by Lech H. Conde on 01/11/16.
// Copyright © 2016 Mavels Software & Consulting. All rights reserved.
//
import UIKit
class CopyableLabel: UILabel {
override var canBecomeFirstResponder: Bool {
return true
}
override init(frame: CGRect) {
super.init(frame: frame)
sharedInit()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
sharedInit()
}
func sharedInit() {
isUserInteractionEnabled = true
addGestureRecognizer(UILongPressGestureRecognizer(target: self, action: #selector(showMenu)))
}
func showMenu(sender: AnyObject?) {
becomeFirstResponder()
let menu = UIMenuController.shared
if !menu.isMenuVisible {
menu.setTargetRect(bounds, in: self)
menu.setMenuVisible(true, animated: true)
}
}
override func copy(_ sender: Any?) {
let board = UIPasteboard.general
board.string = text
let menu = UIMenuController.shared
menu.setMenuVisible(false, animated: true)
}
override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
return action == #selector(UIResponderStandardEditActions.copy)
}
}
@antonyraphel
Copy link

Working superb!!

@phildesign123
Copy link

I get a compile erro

Please help

addGestureRecognizer(UILongPressGestureRecognizer(target: self, action #selector(showMenu)))

Cannot invoke initializer for type 'UILongPressGestureRecognizer' with an argument list of type '(target: calculatorLabel, (CALayer, String) -> CAAction?, Selector)
Argument of '#selector' refers to instance method 'showMenu(sender:)' that is not exposed to Obejective-C
Add '@objc' to expose this instance method to Objective-C
Expected ',' separator

@Virat027
Copy link

Thank you so much Stephen Radford

@Amirtmgr
Copy link

Thanks but. how can i show toast after being copied?

@MSalihBalkan
Copy link

I get a compile erro

Please help

addGestureRecognizer(UILongPressGestureRecognizer(target: self, action #selector(showMenu)))

Cannot invoke initializer for type 'UILongPressGestureRecognizer' with an argument list of type '(target: calculatorLabel, (CALayer, String) -> CAAction?, Selector)
Argument of '#selector' refers to instance method 'showMenu(sender:)' that is not exposed to Obejective-C
Add '@objc' to expose this instance method to Objective-C
Expected ',' separator

Just click "Fix" button in the error dialog.

@sopha08
Copy link

sopha08 commented Jan 15, 2019

but how i can select on UILabel?

@CarylBernhaben
Copy link

but how i can select on UILabel?

override func copy(_ sender: Any?) {
let board = UIPasteboard.general
board.string = text
let menu = UIMenuController.shared
menu.setMenuVisible(false, animated: true)
}

I think that "text" is supposed to be where your UILabel's text goes.

@dcristolovean
Copy link

I can find this code example in a 1000 places, but all it does is copying the entire label. No selection possible, so kinda useless. Or am I missing something ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment