我希望在聚焦时放大文本字段。如果键盘出现或消失,我知道如何向上或向下移动文本字段。但是,不知道如何放大或缩小文本字段。
答案 0 :(得分:0)
为UITextField设置委托后,请尝试此操作,希望它对您有所帮助。
- (void)textFieldDidBeginEditing:(UITextField *)textField{
textField.transform = CGAffineTransformMakeScale(1.5, 1.5);
}
- (void)textFieldDidEndEditing:(UITextField *)textField{
textField.transform = CGAffineTransformMakeScale(1.0, 1.0);
}
答案 1 :(得分:0)
您可以使用contentScaleFactor
放大。
您可以参考此answer进一步解释