Swiftgram/Example/lottie-ios/AnimatedTextField.h
2017-01-26 12:20:43 -08:00

20 lines
467 B
Objective-C

//
// LAAnimatedTextField.h
// LottieExamples
//
// Created by Brandon Withrow on 1/10/17.
// Copyright © 2017 Brandon Withrow. All rights reserved.
//
#import <UIKit/UIKit.h>
@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