如何使 UITextField 的背景颜色闪烁?
问问题
1588 次
1 回答
4
创建一个切换背景颜色的函数。
-(void) flashBackground
{
UIColor* color = _flashOn ? [UIColor colorRed] : [UIColor colorWhite];
_textField.backgroundColor = color;
[_textField setNeedsDisplay];
_flashOn = !_flashOn;
}
然后设置一个定时器来调用这个函数
[NSTimer scheduledTimerWithTimeInterval:0.1f target:self selector:@selector(flashBackground) userInfo: nil repeats: NO];
于 2009-02-25T23:44:55.177 回答