Text Field General

Text fields are for single line text.  For multi line text use Text View Delegates textFieldShouldReturn Keyboard return key pressed Example Of Use Declaring in #ViewController.h file IBOutlet UITextField *MyTextFieldName; Releasing in #ViewController.m file //********** VIEW DID UNLOAD ********** – (void)viewDidUnload { [super viewDidUnload]; [MyTextFieldName release]; MyTextFieldName = nil; } //********** DEALLOC ********** – (void)dealloc […]

Read More