TextView General

TextView is the same as TextField apart from TextView allowing multi-line editing.  A TextView's Return key enters the newline character whereas a TextField's return key dispatches the delegate method 'textFieldShouldReturn'. Example Of Use Declaring in #ViewController.h file IBOutlet UITextView *MyTextViewName; Releasing in #ViewController.m file //************************************* //************************************* //********** VIEW DID UNLOAD ********** //************************************* //************************************* – (void)viewDidUnload […]

Read More