123456789101112131415 |
- //
- // RichTextViewDelegate.swift
- // RichTextView
- //
- // Created by Ahmed Elkady on 2019-03-15.
- // Copyright © 2019 Top Hat. All rights reserved.
- //
- import UIKit
- @objc public protocol RichTextViewDelegate: UITextViewDelegate {
- func didTapCustomLink(withID linkID: String)
- @objc optional func canPerformRichTextViewAction(_ action: Selector, withSender sender: Any?) -> Bool
- @objc optional func copyMenuItemTapped()
- }
|