PLVWebViewFeedData
Objective-C
@interface PLVWebViewFeedData : NSObject
/// 唯一标识
@property (nonatomic, copy, readonly) NSString *hashKey;
/// 数据下标
@property (nonatomic, assign) NSInteger index;
/// WebView 配置
@property (nonatomic, strong) PLVWebViewConfig *webViewConfig;
/// 用户信息
@property (nonatomic, strong) PLVWebViewLiveUserInfo * _Nullable liveUserInfo;
/// 频道信息
@property (nonatomic, strong) PLVWebViewLiveChannelInfo * _Nullable liveChannelInfo;
@end
Swift
class PLVWebViewFeedData : NSObject
Undocumented
-
唯一标识
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull hashKey;
Swift
var hashKey: String { get }
-
数据下标
Declaration
Objective-C
@property (nonatomic) NSInteger index;
Swift
var index: Int { get set }
-
WebView 配置
Declaration
Objective-C
@property (nonatomic, strong) PLVWebViewConfig *_Nonnull webViewConfig;
Swift
var webViewConfig: PLVWebViewConfig { get set }
-
用户信息
Declaration
Objective-C
@property (nonatomic, strong) PLVWebViewLiveUserInfo *_Nullable liveUserInfo;
Swift
var liveUserInfo: PLVWebViewLiveUserInfo? { get set }
-
频道信息
Declaration
Objective-C
@property (nonatomic, strong) PLVWebViewLiveChannelInfo *_Nullable liveChannelInfo;
Swift
var liveChannelInfo: PLVWebViewLiveChannelInfo? { get set }