1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #import <UIKit/UIKit.h>
- @interface CYRTextStorage : NSTextStorage
- @property (nonatomic, strong) NSArray *tokens;
- @property (nonatomic, strong) UIFont *defaultFont;
- - (void)update;
- @end
|