- textField 添加target 觸發(fā)條件 UIControlEventEditingChanged ,響應(yīng) textField 編輯時(shí)的內(nèi)容改變事件
[self.textFeild addTarget:self action:@selector(passConTextChange:) forControlEvents:UIControlEventEditingChanged];
- (void)textFieldEditingChanged:(UITextField *)textField{
NSUInteger textLength = textField.text.length;
if (!textLength) {
textField.font = [UIFont systemFontOfSize:12.0f];
}else {
textField.font = [UIFont systemFontOfSize:20.0f];
}
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者