12345678910111213141516171819 |
- //
- // CPDFDataModel.m
- // PDFViewer
- //
- // Created by kdan on 2022/11/21.
- //
- #import "PDFWatermarkDataModel.h"
- @implementation PDFWatermarkDataModel
- -(instancetype)init {
- if (self = [super init]) {
- _textColor = [[UIColor alloc] init];
- }
- return self;
- }
- @end
|