12345678910111213141516171819 |
- #import "RNNOptions.h"
- #import "RNNSubtitleOptions.h"
-
- @interface RNNTitleOptions : RNNOptions
-
- @property (nonatomic, strong) NSString* text;
- @property (nonatomic, strong) NSNumber* fontSize;
- @property (nonatomic, strong) NSNumber* color;
- @property (nonatomic, strong) NSString* fontFamily;
-
- @property (nonatomic, strong) NSString* component;
- @property (nonatomic, strong) NSString* componentAlignment;
-
- @property (nonatomic, strong) RNNSubtitleOptions* subtitle;
-
- @property (nonatomic, strong) NSDictionary* fontAttributes;
-
- @end
|