12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #import <UIKit/UIKit.h>
- #import "CYRToken.h"
- @interface CYRTextView : UITextView
- @property (nonatomic, strong) NSArray *tokens;
- @property (nonatomic, strong) UIPanGestureRecognizer *singleFingerPanRecognizer;
- @property (nonatomic, strong) UIPanGestureRecognizer *doubleFingerPanRecognizer;
- @property UIColor *gutterBackgroundColor;
- @property UIColor *gutterLineColor;
- @property (nonatomic, assign) BOOL lineCursorEnabled;
- @end
|