iOS:键盘自动出现在ios8中,但无法重新签名文本字段

时间:2015-06-19 09:56:03

标签: ios uitextfield uikeyboard

使用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];
    }
}

enter image description here

0 个答案:

没有答案