0
私はこのコードを書いています。テキストフィールドをクリックすると、キーボードは表示されません。UITextフィールドのサイズ変更
-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if (textField==urlTxtFld) {
CGRect newBounds = urlTxtFld.bounds;
GoogleTxtFld.hidden=YES;
//[urlTxtFld setFrame:CGRectMake(0, 0, 320, 40)];
newBounds.size.width = 320; //whatever you want the new width to be
[UIView beginAnimations:nil context:nil];
urlTxtFld.bounds = newBounds;
[UIView commitAnimations];
}return YES;
}