UITextView inside UIScrollView is not First Responder
- by Sheehan Alam
I have a UITextView on a View that becomes the first responder.
When I embed the UITextView inside of a UIScrollView in Interface Builder the UITextView is no longer the first responder. I am not sure what has changed?
- (void)viewDidLoad {
[super viewDidLoad];
[scrollView setContentSize:CGSizeMake(540,620)];
composeTextView.delegate = self;
[composeTextView becomeFirstResponder];
}