我有2种淡入淡出方法,可以简单地改变文本字段的背景。唯一的区别是用于背景的图像。已复制并粘贴图像的名称,因此没有拼写错误。
- (IBAction)fadeEnable:(UITextField *)textField;
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.00];
[textField setAlpha:0];
[UIView commitAnimations];
textField.background = [UIImage imageNamed:@"background_for_text.png"];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.00];
[textField setAlpha:1];
[UIView commitAnimations];
}
- (IBAction)fadeDisable:(UITextField *)textField;
{
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.00];
[textField setAlpha:0];
[UIView commitAnimations];
textField.background = [UIImage imageNamed:@"background_for_text_2"];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:1.00];
[textField setAlpha:1];
[UIView commitAnimations];
}
我的textField上有一个观察者,它会查看“enabled @属性是否已更改。
我正在尝试编写一些代码,说明如果启用的属性更改,并且它更改为启用,则运行启用的动画。如果它更改为禁用,请运行禁用的动画。
不幸的是,它只在两种情况下运行fadeDisabled方法,我不明白为什么。
- (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *) context;
{
UITextField *txtField = (UITextField *)object;
BOOL new = [[change objectForKey:NSKeyValueChangeNewKey] boolValue];
BOOL old = [[change objectForKey:NSKeyValueChangeOldKey] boolValue];
NSLog(@"new,%i",new);
NSLog(@"old,%i",old);
if ((new != old) && (new == NO))
{
[self fadeDisable:txtField];
}
else if ((new != old) && (new == YES))
{
[self fadeEnable:txtField];
}
}
答案 0 :(得分:0)
我发现了错误,对于fadeDisabled,我需要更改禁用的背景,而不是正常的背景。
使用以下内容,现在看起来工作正常。
textField.disabledBackground = [UIImage imageNamed:@"background_for_text_2"];