收回键盘的其他方式

不容易获得键盘对象的时候可以这样

[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder)to:nilfrom:nilforEvent:nil];

还可以

[[[UIApplication sharedApplication] keyWindow] endEditing:YES];

你可能感兴趣的:(收回键盘的其他方式)