最近在项目中发现一个问题,用户点击textfield后,弹出的键盘变高了,而且上下字母之间的间隔也变大了。代码使用的是系统自带的键盘。
图2是别的APP的弹出键盘,图1是我项目里面的。
Solved, adaptation problem
UITextField follows the UITextInputTraits protocol. In this protocol, there are several attribute values, keyboardType, keyboardAppearance, returnKeyType. Different keyboard styles can be set through these attributes. . .
Solved, adaptation problem
UITextField follows the UITextInputTraits protocol. In this protocol, there are several attribute values, keyboardType, keyboardAppearance, returnKeyType. Different keyboard styles can be set through these attributes. . .