3
2

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.

[iOS] キーボードの上にツールバーを表示する

Posted at

やりたいこと

TextViewをタップした時に表示されるソフトウェアキーボードの上にツールバーを表示する
スクリーンショット 2020-04-18 16.34.50.png

環境

Xcode11.3.1
Swift 5

UITextView.inputAccessoryViewにツールバーを設定する

    // textView
    @IBOutlet weak var tweetTextView: UITextView!

    override func viewDidLoad() {
        super.viewDidLoad()
        
     // ツールバーを定義
        let toolBar = UIToolbar(frame: CGRect(x: 0, y: 0, width: 0, height: 0))

     // サイズを自動で最適な物にしてくれる
        toolBar.sizeToFit()
        
        // ツールバーのアイテム:カメラ
        let cameraButton = UIBarButtonItem(barButtonSystemItem: .camera, target: self, action: #selector(didTapCamera))

     // ツールバーにスペース追加。これがないと、右寄せにできない
        let spacer = UIBarButtonItem(barButtonSystemItem: .flexibleSpace, target: self, action: nil)

     // ツールバーのアイテム:ツイート
        let tweetButton = UIBarButtonItem(title: "Tweet", style: .plain, target: self, action: #selector(didTapTweet))

     // ツールバーにアイテム追加
        toolBar.items = [cameraButton, spacer, tweetButton]
        
        // TextViewにツールバーを設定
        tweetTextView.inputAccessoryView = toolBar
        
    } 
3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?