现在的位置: 首页 > 综合 > 正文

IOS TextField 动态清空提示文本

2013年12月09日 ⁄ 综合 ⁄ 共 197字 ⁄ 字号 评论关闭
            [UIView beginAnimations:nil context:nil];
            [UIView setAnimationDuration:0.3f];
            [phoneTextField setEnabled:YES];
            [phoneTextField becomeFirstResponder];
             phoneTextField.placeholder = nil;
            [UIView commitAnimations];

抱歉!评论已关闭.