// // LAAnimatedTextField.h // LottieExamples // // Created by Brandon Withrow on 1/10/17. // Copyright © 2017 Brandon Withrow. All rights reserved. // #import @interface AnimatedTextField : UIView @property (nonatomic, assign) NSInteger fontSize; @property (nonatomic, copy) NSString *text; @property (nonatomic, assign) UIEdgeInsets scrollInsets; - (void)changeCharactersInRange:(NSRange)range toString:(NSString *)replacementString; @end