iOS UIAlertController中中UITextField添加晃动效果与边框颜色添加晃动效果与边框颜色
详解详解
主要给大家介绍了关于iOS UIAlertController中UITextField添加晃动效果与边框颜色的相关资料,实现后的效果
非常适合在开发中使用,文中给出了详细的示例代码,需要的朋友可以参考借鉴,下面随着小编来一起看看
吧。
前言前言
大家都知道在iOS8中引入了UIAlertController,通过UIAlertController可以方便的添加文本框进行编辑,但是,在输入错误的内
容时,如何对用户进行提醒就成了问题,因为UIAlertController中的所有UIAlertAction都会导致UIAlertController的消失。这
里,我就描述两种提示的方法,分别是晃动文本框和修改边框的颜色。下面话不多说了,来一起看看详细的实现方法吧。
晃动晃动UITextField
晃动UITextField其实就是对它添加一个动画效果,参考了Stack Overflow上的做法,通过添加position的动画,可以实现
UIAlertController中的UITextField的晃动效果。
- (void)shakeField:(UITextField *)textField {
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];
animation.duration = 0.07;
animation.repeatCount = 4;
animation.autoreverses = YES;
animation.fromValue = [NSValue valueWithCGPoint:CGPointMake(textField.centerX - 10, textField.centerY)];
animation.toValue = [NSValue valueWithCGPoint:CGPointMake(textField.centerX + 10, textField.centerY)];
[textField.layer addAnimation:animation forKey:@"position"];
}
修改修改UITextField的边框颜色的边框颜色
UIAlertController中文本框的默认边框颜色都是黑色,通常在输入异常时会改为红色进行提醒,这个时候,如果直接修改
UITextField的border将会变成下图样式:
- (void)testAlert {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"测试" message:@"测试输入框边框颜色" preferredStyle:UIAlertControllerStyleAlert];
[alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil]];
[alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.layer.borderColor = [UIColor redColor].CGColor;
textField.layer.borderWidth = 1;
}];
[self presentViewController:alert animated:YES completion:nil];
}
评论0
最新资源