... | ... | @@ -48,18 +48,36 @@ |
|
|
|
|
|
**已安装CocoaPods**
|
|
|
|
|
|
```
|
|
|
如果是有连麦的SDK:
|
|
|
**3.x.x 系列版本 Pod 集成方式**
|
|
|
|
|
|
```shell
|
|
|
如果是 “有连麦” 的 SDK:
|
|
|
pod 'CCLivePlaySDK', '~> 3.8.0'
|
|
|
如果是无连麦的SDK:
|
|
|
|
|
|
如果是 “无连麦” 的 SDK:
|
|
|
v3.11.2 之前的版本请用如下链接:
|
|
|
pod 'CCLivePlaySDK', :podspec => 'https://raw.githubusercontent.com/CCVideo/Live_iOS_Play_SDK/3.8.0/CCLivePlaySDK.podspec'
|
|
|
v3.11.2 之后的版本请用如下链接:
|
|
|
pod 'CCLivePlaySDK', :podspec => 'https://hdgit.bokecc.com/ccvideo/Live_iOS_Play_SDK/raw/3.11.2/CCLivePlaySDK.podspec'
|
|
|
v3.17.8 之后版本可使用:
|
|
|
pod 'CCLivePlaySDK_NoMediaCall'
|
|
|
|
|
|
PS:其中3.8.0与3.11.2为SDK版本号可自行更改。
|
|
|
```
|
|
|
|
|
|
**4.x.x 系列版本 Pod 集成方式(PS:不支持无连麦,无连麦版本请使用 3.x.x 无连麦版本)**
|
|
|
|
|
|
```shell
|
|
|
pod 'CCLivePlaySDK', '~> 4.x.x'
|
|
|
pod 'HDVideoClass_BSDK'
|
|
|
pod 'AgoraRtcEngine_iOS', '3.4.8'
|
|
|
pod 'HDSAliyunPlayer'
|
|
|
pod 'HDSCocoaLumberjack'
|
|
|
pod 'HDSSZip'
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
**未安装CocoaPods**
|
|
|
|
|
|
1. 安装CocoaPods
|
... | ... | @@ -708,10 +726,25 @@ typedef NS_ENUM(NSUInteger, NEW_LOTTERY) { |
|
|
* ownUserInfo (NSDictionary 必须) 中奖者信息 例:@{@"userAvatar":头像,@"userName":用户名,@"userId":用户id,@"prizeCode":中奖码}
|
|
|
* prize (NSDictionary 必须) 奖品信息 例:@{@"name":奖品名字}
|
|
|
* userInfos (NSArray 必须) 中奖名单 例:@[@{@"userAvatar":头像,@"userName":用户名,@"userId":用户id,@"prizeCode":中奖码}]
|
|
|
* onlineUsers (NSArray 必须) 参与抽奖名单 例:@[@{@"avar":@"头像",@"name":用户名}]
|
|
|
* prizeNum (NSInteger 必须) 奖品个数
|
|
|
* onlineNumber (NSInteger 必须) 参与在线人数
|
|
|
* lotteryType (NSInteger 必须) 抽奖类型 0:普通抽奖 1:老虎机抽奖
|
|
|
*/
|
|
|
@property (nonnull, strong) NSDictionary *infos;
|
|
|
```
|
|
|
|
|
|
### NewLotteryMessageModel 类 infos 字段增加参数
|
|
|
|
|
|
| 参数 | 是否必须 | 注释 |
|
|
|
| ------------ | --------------------- | ---------------------------------------------------- |
|
|
|
| onlineUsers | (NSArray 必须) | 参与抽奖名单 例:@[@{@"avar":@"头像",@"name":用户名}] |
|
|
|
| prizeNum | (NSInteger 必须) | 奖品个数 |
|
|
|
| onlineNumber | (NSInteger 必须) | 参与在线人数 |
|
|
|
| lotteryType | (NSInteger 必须) | 抽奖类型 0:普通抽奖 1:老虎机抽奖 |
|
|
|
|
|
|
|
|
|
|
|
|
新增 **HDQualityModel** 类 (切换线路清晰度)
|
|
|
|
|
|
```objc
|
... | ... | |