How to programmatically set UITextView font and size

Hi,

In order to set font and size of a UITextView programmatically use the following code.

self.urTxtView.font = [UIFont fontWithName:@"Zapfino" size:customSize];

:)