0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Text Fieldのなんやかんやをカスタムした

Last updated at Posted at 2021-09-08

こんなTextFieldを実装したのでメモしとく

  • 入力カーソル:無効
  • 範囲選択:無効
  • コピー・ペースト・選択:無効(吹き出しが出ないようにする)
CustomTextField.swift
import UIKit

class CustomTextField: UITextField {
    
    // 入力カーソル:無効
    override func caretRect(for position: UITextPosition) -> CGRect {
        return CGRect.zero
    }

    // 範囲選択:無効
    func selectionRects(for range: UITextRange) -> [Any] {
        return []
    }

    // コピー・ペースト・選択:無効
    override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool {
        return false
    }
}

ちなみに、、、

CustomTextField.swift

    open var caretFlag: Bool = false

    // 入力カーソル:無効、有効の切り替え
    override func caretRect(for position: UITextPosition) -> CGRect {
        if caretFlag {
            return super.caretRect(for: position)
        } else {
            return CGRect.zero
        }
    }

こうすることでcaretFlagがtrueならカーソル非表示、falseならカーソル表示に切り替えが可能です。

Storyboardの場合はCustomTextFieldをクラスとして指定してやれば実装完了です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?