5#import <Foundation/Foundation.h>
20@property(nonatomic, copy, readonly) NSString *
content;
23@property(nonatomic, assign, readonly) NELyricType
type;
26@property(nonatomic, strong, readonly) NSArray<NELyricLine *> *
lineModels;
31- (instancetype)initWithContent:(NSString *)content andType:(NELyricType)type;
39- (nullable
NELyricLine *)lineAtTime:(NSInteger)time;
48- (nullable
NELyricLine *)lineAtTime:(NSInteger)time isEnd:(BOOL)isEnd;
53- (NSArray<
NELyricLine *> *)linesAtTime:(NSInteger)time toTime:(NSInteger)endTime;
NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, NELyricType)
Definition: NELyric.h:10
歌词数据对象
Definition: NELyric.h:18
NSString * content
解密后的文本
Definition: NELyric.h:20
NELyricType type
歌词类型
Definition: NELyric.h:23
NSArray< NELyricLine * > * lineModels
行model
Definition: NELyric.h:26
逐行歌词数据对象
Definition: NELyricLine.h:12