1. 程式人生 > >IOS TextField 動態清空提示文字

IOS TextField 動態清空提示文字

            [UIView beginAnimations:nil context:nil];
            [UIView setAnimationDuration:0.3f];
            [phoneTextField setEnabled:YES];
            [phoneTextField becomeFirstResponder];
             phoneTextField.placeholder = nil;
            [UIView commitAnimations];