// // TestModel.h // TestUITextView // // Created by xxx on 2022/6/8. // #import #import NS_ASSUME_NONNULL_BEGIN @interface TestModel : NSObject @property (nonatomic , strong) NSAttributedString *attrbutedText; @property (nonatomic , assign) CGSize size; - (instancetype)initWithText:(NSString *)text; @end NS_ASSUME_NONNULL_END