Guest User

Untitled

a guest
May 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /*
  2. If you need to do additional setup after loading the view, override viewDidLoad.
  3. */
  4. - (void)viewDidLoad
  5. {
  6. informationTextField.returnKeyType = UIReturnKeyDone;
  7. informationTextField.delegate = self;
  8. [informationTextField becomeFirstResponder];
  9. }
  10.  
  11. - (void)setInformationLabelText:(NSString *)newText;
  12. {
  13. [informationLabel setText:newText];
  14. }
Add Comment
Please, Sign In to add comment