使用xcode6.3.1 / 6.3.2时,在iOS8.3中收到Web服务结果后,键盘会自动出现。但它在以前的版本中可以正常工作。
在触摸视图内部时使用以下代码来重新设置键盘
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
CGPoint ForgotTxt_call = [touch locationInView:userFrgtPwdTxtFld];
BOOL isForgotTxt = [userFrgtPwdTxtFld pointInside:ForgotTxt_call withEvent:nil];
if (!isForgotTxt)
{
[self.vew endEditing: YES];
}
}