- Main.storyboard上に UITextField追加
- Show the assistant editor モードクリック

3. 該当UITextFieldに右クリックと同時にShow the assistant editorに開いた「ViewController.m」へドラッグし、property追加
4. 「ViewController.m」の@implementation ViewController下の部分に追加したUITextFieldの変数名を「@synthesize tempTextField;」のよう追加
5. viewDidLoadメソッドにtempTextField.text="Hello! UITextField"で初期メッセージを適用してみる