IOS TextField 动态清空提示文本

来源:互联网 发布:java 项目经验编写 编辑:程序博客网 时间:2024/05/18 18:47
            [UIView beginAnimations:nil context:nil];            [UIView setAnimationDuration:0.3f];            [phoneTextField setEnabled:YES];            [phoneTextField becomeFirstResponder];             phoneTextField.placeholder = nil;            [UIView commitAnimations];




原创粉丝点击