我需要自定义UITextField's
inputView
. 分配给我的自定义视图inputView
的大小已经是260x220
260x768 inputView
( Portrait
) 和 260x1024( Landscap
)。我尝试改变inputView's
Frame
但仍然没有改变。无论如何我可以修改UITextField's
inputView
Frame
它只占用底部屏幕的某些空间吗?
textField.inputView = numPadViewController.view;
[textField.inputView setFrame:CGRectMake(0, 0, 260, 220)];
[编辑]
从此,我也尝试了以下操作,但没有成功!
numPadViewController.view.autoresizingMask = UIViewAutoresizingNone;
textField.inputView = numPadViewController.view;