This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
5.3 UITextFiled, UITextView
tamotamago edited this page May 7, 2013
·
5 revisions
UITextFieldDelegate Protocol Reference
UITextViewDelegate Protocol Reference
少量のテキストを入力するためのコンポーネントです。検索窓やログインアカウント入力などのよく使われます。
複数行にわたるテキストを表示することが出来ます。また、ユーザからの入力を受け付けることも可能です。
表示モードにすると、link や email address, phone number などを探索して自動的にリンク処理を行ってくれます。
UITextView は UIScrollView を継承しておりますので、UIScrollView の property にもアクセスできます。
UITextField, UITextView はそれぞれ Delegate Protocol が存在します。それらを採用することで、イベント通知を受け取ることが出来ます。例えば入力を始める時、入力したとき、入力を終えた時などです。詳しくは公式リファレンスをご確認ください。
下記の図の遷移を実装してください。
ポイント
- UILabel の sizeToFit でラベルのサイズ変更
- [textField resignFirstResponder] でキーボードの非表示
はじめに
-
導入
-
1.3 UIViewController1 UIViewController のカスタマイズ(xib, autoresizing)
-
UIKit 1 - container, rotate-
-
UIKit 2- UIView -
-
UIKit 3 - table view -
-
UIKit 4 - image and text -
-
ネットワーク処理
-
ローカルキャッシュと通知
-
Blocks, GCD
-
設計とデザインパターン
-
開発ツール
-
テスト
-
In-App Purchase
-
付録