A new development. I have found that if I take out the code that makes the main view firstResponder(see below), the UITextView works fine on the flipside, keyboard and all. So now I think I have to make it so that the flipside view gets set to be firstResponder when it loads. I have put the below code in its view controller, but that doesn't work. Can someone help?
Code:
- (void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
[self becomeFirstResponder];
}
-(BOOL)canBecomeFirstResponder {
return YES;
}