clad Davidson
clad Davidson

Reputation: 31

how to get a UITextView to Clear like a UITextField does

im trying to get a UITextView to Clear like a UITextField does cant seem to get this I making a app that need to clear after tapping send much like a email or tweet with several lines of text. any code would be great thanks so very much

Upvotes: 1

Views: 1660

Answers (1)

Adrian Kosmaczewski
Adrian Kosmaczewski

Reputation: 7966

What about adding a button and then:

- (IBAction)clearField:(id)sender
{
    textView.text = @""; // textView is of type UITextView
}

Upvotes: 1

Related Questions