84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
我的tableview中有3个cell,每个cell中都是textfield现在出现了一个神奇的现象,当点击textfield输入文字时,切换到其他textfield,之前的textfield中的文字会闪一下,&&前三次会出现这样的情况,在之后就正常了,这是为什么呢?
人生最曼妙的风景,竟是内心的淡定与从容!
给 textfield 设上 delegate,试试
- (void)textFieldDidEndEditing:(UITextField *)textField { [textField layoutIfNeeded]; //Fixes iOS 9 text bounce glitch //...other stuff }
我参考了这里
大神我找到原因了,问题出现在这里,我在键盘弹出更改view的位置写了这么一行代码self.view.layoutIfNeeded()删掉这句话后就好了,感谢大神
self.view.layoutIfNeeded()
给 textfield 设上 delegate,试试
我参考了这里
大神我找到原因了,问题出现在这里,我在键盘弹出更改view的位置写了这么一行代码
self.view.layoutIfNeeded()
删掉这句话后就好了,感谢大神