好用app开屏广告组件XHLaunchAd -支持静态/动态图片广告/mp4视频广告

特性:

1.支持静态/动态图片广告.
2.支持mp4视频广告.
3.支持全屏/半屏广告.
4.支持网络及本地资源.
5.兼容iPhone和iPad.
6.支持广告点击事件.
7.支持自定义跳过按钮,添加子视图.
8.支持设置数据等待时间.
9.自带图片/视频下载,缓存功能.
10.支持预缓存图片及视频.
11.支持设置完成动画.
12.支持清除指定资源缓存.
13.支持LaunchImage 和 LaunchScreen.storyboard.
14.等等等…

使用方法

1.在didFinishLaunchingWithOptions中或UIApplicationDidFinishLaunching时初始化开屏广告

-1.1 添加图片开屏广告-使用本地数据

-1.1.1 使用默认配置快速初始化

//1.使用默认配置初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//配置广告数据
XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration defaultConfiguration];
//广告图片URLString/或本地图片名(.jpg/.gif请带上后缀)
imageAdconfiguration.imageNameOrURLString = @"image0.jpg";
 //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
imageAdconfiguration.openModel = @"http://www.it7090.com";
//显示图片开屏广告
[XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self];

-1.1.2自定义配置初始化

//2.自定义配置初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//配置广告数据
XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration new];
//广告停留时间
imageAdconfiguration.duration = 5;
//广告frame
imageAdconfiguration.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-150);
//广告图片URLString/或本地图片名(.jpg/.gif请带上后缀)
imageAdconfiguration.imageNameOrURLString = @"image0.jpg";
//设置GIF动图是否只循环播放一次(仅对动图设置有效)
imageAdconfiguration.GIFImageCycleOnce = NO;
//网络图片缓存机制(只对网络图片有效)
imageAdconfiguration.imageOption = XHLaunchAdImageRefreshCached;
//图片填充模式
imageAdconfiguration.contentMode = UIViewContentModeScaleToFill;
 //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
imageAdconfiguration.openModel = @"http://www.it7090.com";
//广告显示完成动画
imageAdconfiguration.showFinishAnimate =ShowFinishAnimateFadein;
//广告显示完成动画时间
imageAdconfiguration.showFinishAnimateTime = 0.8;
//跳过按钮类型
imageAdconfiguration.skipButtonType = SkipTypeTimeText;
//后台返回时,是否显示广告
imageAdconfiguration.showEnterForeground = NO;

 //设置要添加的子视图(可选)
//imageAdconfiguration.subViews = ...

//显示图片开屏广告
[XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self]; 

-1.2 添加图片开屏广告-使用网络数据

-1.2.1 使用默认配置快速初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//1.因为数据请求是异步的,请在数据请求前,调用下面方法配置数据等待时间.
//2.设为2即表示:启动页将停留2s等待服务器返回广告数据,2s内等到广告数据,将正常显示广告,否则将不显示
//3.数据获取成功,配置广告数据后,自动结束等待,显示广告
//注意:请求广告数据前,必须设置此属性,否则会先进入window的的根控制器
[XHLaunchAd setWaitDataDuration:2];

//广告数据请求
[Network getLaunchAdImageDataSuccess:^(NSDictionary * response) {
    
    NSLog(@"广告数据 = %@",response);
    
    //广告数据转模型
    LaunchAdModel *model = [[LaunchAdModel alloc] initWithDict:response[@"data"]];
    //配置广告数据
    XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration defaultConfiguration];
    //广告图片URLString/或本地图片名(.jpg/.gif请带上后缀)
    imageAdconfiguration.imageNameOrURLString = model.content;
     //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
    imageAdconfiguration.openModel = model.openUrl;
    //显示开屏广告
    [XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self];
    
} failure:^(NSError *error) {
}];

-1.2.2 自定义配置初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//1.因为数据请求是异步的,请在数据请求前,调用下面方法配置数据等待时间.
//2.设为2即表示:启动页将停留2s等待服务器返回广告数据,2s内等到广告数据,将正常显示广告,否则将不显示
//3.数据获取成功,配置广告数据后,自动结束等待,显示广告
//注意:请求广告数据前,必须设置此属性,否则会先进入window的的根控制器
[XHLaunchAd setWaitDataDuration:2];

//广告数据请求
[Network getLaunchAdImageDataSuccess:^(NSDictionary * response) {
    
    NSLog(@"广告数据 = %@",response);
    
    //广告数据转模型
    LaunchAdModel *model = [[LaunchAdModel alloc] initWithDict:response[@"data"]];
    //配置广告数据
    XHLaunchImageAdConfiguration *imageAdconfiguration = [XHLaunchImageAdConfiguration new];
    //广告停留时间
    imageAdconfiguration.duration = model.duration;
    //广告frame
    imageAdconfiguration.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.width/model.width*model.height);
    //广告图片URLString/或本地图片名(.jpg/.gif请带上后缀)
    imageAdconfiguration.imageNameOrURLString = model.content;
    //设置GIF动图是否只循环播放一次(仅对动图设置有效)
    imageAdconfiguration.GIFImageCycleOnce = NO;
    //缓存机制(仅对网络图片有效)
    //为告展示效果更好,可设置为XHLaunchAdImageCacheInBackground,先缓存,下次显示
    imageAdconfiguration.imageOption = XHLaunchAdImageDefault;
    //图片填充模式
    imageAdconfiguration.contentMode = UIViewContentModeScaleToFill;
     //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
    imageAdconfiguration.openModel = model.openUrl;
    //广告显示完成动画
    imageAdconfiguration.showFinishAnimate =ShowFinishAnimateLite;
    //广告显示完成动画时间
    imageAdconfiguration.showFinishAnimateTime = 0.8;
    //跳过按钮类型
    imageAdconfiguration.skipButtonType = SkipTypeTimeText;
    //后台返回时,是否显示广告
    imageAdconfiguration.showEnterForeground = NO;

     //设置要添加的自定义视图(可选)
     //imageAdconfiguration.subViews = ...

    //显示开屏广告
    [XHLaunchAd imageAdWithImageAdConfiguration:imageAdconfiguration delegate:self];
    
} failure:^(NSError *error) {
}];

-1.3添加视频开屏广告-使用本地数据

-1.3.1 使用默认配置快速初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//1.使用默认配置初始化
XHLaunchVideoAdConfiguration *videoAdconfiguration = [XHLaunchVideoAdConfiguration defaultConfiguration];
//广告视频URLString/或本地视频名(请带上后缀)
videoAdconfiguration.videoNameOrURLString = @"video0.mp4";
 //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
videoAdconfiguration.openModel = @"http://www.it7090.com";
//显示视频开屏广告
[XHLaunchAd videoAdWithVideoAdConfiguration:videoAdconfiguration delegate:self];

-1.3.2 自定义配置初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//2.自定义配置
XHLaunchVideoAdConfiguration *videoAdconfiguration = [XHLaunchVideoAdConfiguration new];
//广告停留时间
videoAdconfiguration.duration = 5;
//广告frame
videoAdconfiguration.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height);
//广告视频URLString/或本地视频名(请带上后缀)
videoAdconfiguration.videoNameOrURLString = @"video1.mp4";
//是否关闭音频
videoAdconfiguration.muted = NO;
//视频填充模式
videoAdconfiguration.videoGravity = AVLayerVideoGravityResizeAspectFill;
//是否只循环播放一次
videoAdconfiguration.videoCycleOnce = NO;
 //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
videoAdconfiguration.openModel =  @"http://www.it7090.com";
//广告显示完成动画
videoAdconfiguration.showFinishAnimate =ShowFinishAnimateFadein;
//广告显示完成动画时间
videoAdconfiguration.showFinishAnimateTime = 0.8;
//跳过按钮类型
videoAdconfiguration.skipButtonType = SkipTypeTimeText;
//后台返回时,是否显示广告
videoAdconfiguration.showEnterForeground = NO;

//设置要添加的子视图(可选)
//videoAdconfiguration.subViews = ...

//显示视频开屏广告
[XHLaunchAd videoAdWithVideoAdConfiguration:videoAdconfiguration delegate:self];

-1.4添加视频开屏广告-使用网络数据

-1.4.1 使用默认配置快速初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//1.因为数据请求是异步的,请在数据请求前,调用下面方法配置数据等待时间.
//2.设为2即表示:启动页将停留2s等待服务器返回广告数据,2s内等到广告数据,将正常显示广告,否则将不显示
//3.数据获取成功,配置广告数据后,自动结束等待,显示广告
//注意:请求广告数据前,必须设置此属性,否则会先进入window的的根控制器
[XHLaunchAd setWaitDataDuration:2];

//广告数据请求
[Network getLaunchAdVideoDataSuccess:^(NSDictionary * response) {
    
    NSLog(@"广告数据 = %@",response);
    
    //广告数据转模型
    LaunchAdModel *model = [[LaunchAdModel alloc] initWithDict:response[@"data"]];
    
    //配置广告数据
    XHLaunchVideoAdConfiguration *videoAdconfiguration = [XHLaunchVideoAdConfiguration defaultConfiguration];
    //注意:视频广告只支持先缓存,下次显示(看效果请二次运行)
    videoAdconfiguration.videoNameOrURLString = model.content;
     //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
    videoAdconfiguration.openModel = model.openUrl;
    [XHLaunchAd videoAdWithVideoAdConfiguration:videoAdconfiguration delegate:self];
    
} failure:^(NSError *error) {
}];

-1.4.2 自定义配置初始化

//设置你工程的启动页使用的是:LaunchImage 还是 LaunchScreen.storyboard(不设置默认:LaunchImage)
[XHLaunchAd setLaunchSourceType:SourceTypeLaunchImage];

//1.因为数据请求是异步的,请在数据请求前,调用下面方法配置数据等待时间.
//2.设为2即表示:启动页将停留2s等待服务器返回广告数据,2s内等到广告数据,将正常显示广告,否则将不显示
//3.数据获取成功,配置广告数据后,自动结束等待,显示广告
//注意:请求广告数据前,必须设置此属性,否则会先进入window的的根控制器
[XHLaunchAd setWaitDataDuration:2];

//广告数据请求
[Network getLaunchAdVideoDataSuccess:^(NSDictionary * response) {
    
    NSLog(@"广告数据 = %@",response);
    
    //广告数据转模型
    LaunchAdModel *model = [[LaunchAdModel alloc] initWithDict:response[@"data"]];
    
    //配置广告数据
    XHLaunchVideoAdConfiguration *videoAdconfiguration = [XHLaunchVideoAdConfiguration new];
    //广告停留时间
    videoAdconfiguration.duration = model.duration;
    //广告frame
    videoAdconfiguration.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.width/model.width*model.height);
    //广告视频URLString/或本地视频名(请带上后缀)
    //注意:视频广告只支持先缓存,下次显示(看效果请二次运行)
    videoAdconfiguration.videoNameOrURLString = model.content;
    //是否关闭音频
    videoAdconfiguration.muted = NO;
    //视频填充模式
    videoAdconfiguration.videoGravity = AVLayerVideoGravityResizeAspectFill;
    //是否只循环播放一次
    videoAdconfiguration.videoCycleOnce = NO;
     //广告点击打开页面参数(openModel可为NSString,模型,字典等任意类型)
    videoAdconfiguration.openModel = model.openUrl;
    //广告显示完成动画
    videoAdconfiguration.showFinishAnimate =ShowFinishAnimateFadein;
    //广告显示完成动画时间
    videoAdconfiguration.showFinishAnimateTime = 0.8;
    //后台返回时,是否显示广告
    videoAdconfiguration.showEnterForeground = NO;
    //跳过按钮类型
    videoAdconfiguration.skipButtonType = SkipTypeTimeText;

    //设置要添加的自定义视图(可选)
    //videoAdconfiguration.subViews = ...

    [XHLaunchAd videoAdWithVideoAdConfiguration:videoAdconfiguration delegate:self];
    
} failure:^(NSError *error) {
}];

-1.5.0 显示完成动画支持以下效果

/** 显示完成动画类型 /
typedef NS_ENUM(NSInteger , ShowFinishAnimate) {
/
* 无动画 /
ShowFinishAnimateNone = 1,
/
* 普通淡入(default) /
ShowFinishAnimateFadein = 2,
/
* 放大淡入 /
ShowFinishAnimateLite = 3,
/
* 左右翻转(类似网易云音乐) /
ShowFinishAnimateFlipFromLeft = 4,
/
* 下上翻转 /
ShowFinishAnimateFlipFromBottom = 5,
/
* 向上翻页 */
ShowFinishAnimateCurlUp = 6,
};
-1.6.0 跳过按钮支持以下类型

/** 跳过按钮类型 /
typedef NS_ENUM(NSInteger,SkipType) {
SkipTypeNone = 1,//无
/
* 方形 /
SkipTypeTime = 2,//方形:倒计时
SkipTypeText = 3,//方形:跳过
SkipTypeTimeText = 4,//方形:倒计时+跳过 (default)
/
* 圆形 */
SkipTypeRoundTime = 5,//圆形:倒计时
SkipTypeRoundText = 6,//圆形:跳过
SkipTypeRoundProgressTime = 7,//圆形:进度圈+倒计时
SkipTypeRoundProgressText = 8,//圆形:进度圈+跳过
};
2.点击事件

/**
广告点击事件回调(return YES移除广告,NO不移除广告)
*/
-(BOOL)xhLaunchAd:(XHLaunchAd *)launchAd clickAtOpenModel:(id)openModel clickPoint:(CGPoint)clickPoint{

NSLog(@"广告点击事件");

//openModel即配置广告数据设置的点击广告时打开页面参数(configuration.openModel)

if(openModel == nil) return NO;

WebViewController *VC = [[WebViewController alloc] init];
NSString *urlString = (NSString *)openModel;
VC.URLString = urlString;
//此处不要直接取keyWindow
UIViewController* rootVC = [[UIApplication sharedApplication].delegate window].rootViewController;
[rootVC.myNavigationController pushViewController:VC animated:YES];

return YES;//YES移除广告,NO不移除广告

}

3.自定义跳过按钮

//1.XHLaunchImageAdConfiguration 和XHLaunchVideoAdConfiguration 均有一个configuration.customSkipView 属性
//2.自定义一个skipView 赋值给configuration.customSkipView属性 便可替换默认跳过按钮 如下:
configuration.customSkipView = [self customSkipView];

-(UIView *)customSkipView
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.backgroundColor =[UIColor orangeColor];
button.layer.cornerRadius = 5.0;
button.layer.borderWidth = 1.5;
button.layer.borderColor = [UIColor lightGrayColor].CGColor;
[button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
button.titleLabel.font = [UIFont systemFontOfSize:14];
CGFloat y = XH_IPHONEX ? 54 : 30;
button.frame = CGRectMake([UIScreen mainScreen].bounds.size.width-100,y, 85, 30);
[button addTarget:self action:@selector(skipAction) forControlEvents:UIControlEventTouchUpInside];
return button;
}

-(void)skipAction
{
//移除广告
[XHLaunchAd removeAndAnimated:YES];
}

/**

  • 代理方法 - 倒计时回调
  • @param launchAd XHLaunchAd
  • @param duration 倒计时时间
    */
    -(void)xhLaunchAd:(XHLaunchAd *)launchAd customSkipView:(UIView *)customSkipView duration:(NSInteger)duration
    {
    UIButton *button = (UIButton *)customSkipView;//此处转换为你之前的类型
    //设置自定义跳过按钮倒计时
    [button setTitle:[NSString stringWithFormat:@“自定义%lds”,duration] forState:UIControlStateNormal];
    }
    4.批量下载缓存接口(如果你需要提前批量下载并缓存广告图片或视频请调用下面方法)

/**

  • 批量下载并缓存image(异步) - 已缓存的image不会再次下载缓存
  • @param urlArray image URL Array
    */
    +(void)downLoadImageAndCacheWithURLArray:(NSArray <NSURL *> * )urlArray;

/**
批量下载并缓存image,并回调结果(异步)- 已缓存的image不会再次下载缓存

@param urlArray image URL Array
@param completedBlock 回调结果为一个字典数组,url:图片的url字符串,result:0表示该图片下载缓存失败,1表示该图片下载并缓存完成或本地缓存中已有该图片
*/
+(void)downLoadImageAndCacheWithURLArray:(nonnull NSArray <NSURL *> * )urlArray completed:(nullable XHLaunchAdBatchDownLoadAndCacheCompletedBlock)completedBlock;

/**

  • 批量下载并缓存视频(异步) - 已缓存的视频不会再次下载缓存
  • @param urlArray 视频URL Array
    */
    +(void)downLoadVideoAndCacheWithURLArray:(NSArray <NSURL *> * )urlArray;

/**
批量下载并缓存视频,并回调结果(异步) - 已缓存的视频不会再次下载缓存

@param urlArray 视频URL Array
@param completedBlock 回调结果为一个字典数组,url:视频的url字符串,result:0表示该视频下载缓存失败,1表示该视频下载并缓存完成或本地缓存中已有该视频
*/
+(void)downLoadVideoAndCacheWithURLArray:(nonnull NSArray <NSURL *> * )urlArray completed:(nullable XHLaunchAdBatchDownLoadAndCacheCompletedBlock)completedBlock;
5.检测是否已缓存

/**

  • 是否已缓存在该图片
  • @param url image url
  • @return BOOL
    */
    +(BOOL)checkImageInCacheWithURL:(NSURL *)url;

/**

  • 是否已缓存该视频
  • @param url video url
  • @return BOOL
    */
    +(BOOL)checkVideoInCacheWithURL:(NSURL *)url;
    6.缓存/清理相关

/**

  • 清除XHLaunch本地所有缓存
    */
    +(void)clearDiskCache;

/**
清除指定Url的图片本地缓存(异步)

@param imageUrlArray 需要清除缓存的图片Url数组
*/
+(void)clearDiskCacheWithImageUrlArray:(NSArray<NSURL *> *)imageUrlArray;

/**
清除指定Url除外的图片本地缓存(异步)

@param exceptImageUrlArray 此url数组的图片缓存将被保留,不会被清理
*/
+(void)clearDiskCacheExceptImageUrlArray:(NSArray<NSURL *> *)exceptImageUrlArray;

/**
清除指定Url的视频本地缓存(异步)

@param videoUrlArray 需要清除缓存的视频url数组
*/
+(void)clearDiskCacheWithVideoUrlArray:(NSArray<NSURL *> *)videoUrlArray;

/**
清除指定Url除外的视频本地缓存(异步)

@param exceptVideoUrlArray 此url数组的视频缓存将被保留,不会被清理
*/
+(void)clearDiskCacheExceptVideoUrlArray:(NSArray<NSURL *> *)exceptVideoUrlArray;

/**

  • 获取XHLaunch本地缓存大小(M)
    */
    +(float)diskCacheSize;

/**

  • 缓存路径
    */
    +(NSString *)xhLaunchAdCachePath;
    7.其它代理方法

/**

  • 图片本地读取/或下载完成回调
  • @param launchAd XHLaunchAd
  • @param image 读取/下载的image
  • @param imageData 读取/下载的imageData
    */
    -(void)xhLaunchAd:(XHLaunchAd *)launchAd imageDownLoadFinish:(UIImage )image imageData:(NSData )imageData;
    {
    NSLog(@“图片下载完成/或本地图片读取完成回调”);
    }
    /
  • 视频下载完成回调
  • @param launchAd XHLaunchAd
  • @param pathURL 视频保存在本地的path
    */
    -(void)xhLaunchAd:(XHLaunchAd *)launchAd videoDownLoadFinish:(NSURL *)pathURL
    {
    NSLog(@“video下载/加载完成/保存path = %@”,pathURL.absoluteString);
    }

/**

  • 视频下载进度回调
    */
    -(void)xhLaunchAd:(XHLaunchAd *)launchAd videoDownLoadProgress:(float)progress total:(unsigned long long)total current:(unsigned long long)current
    {
    NSLog(@“总大小=%lld,已下载大小=%lld,下载进度=%f”,total,current,progress);

}
/**

  • 广告显示完成
    */
    -(void)xhLaunchAdShowFinish:(XHLaunchAd *)launchAd
    {
    NSLog(@“广告显示完成”);
    }

/**
如果你想用SDWebImage等框架加载网络广告图片,请实现此代理(注意:实现此方法后,图片缓存将不受XHLaunchAd管理)

@param launchAd XHLaunchAd
@param launchAdImageView launchAdImageView
@param url 图片url
*/
-(void)xhLaunchAd:(XHLaunchAd *)launchAd launchAdImageView:(UIImageView *)launchAdImageView URL:(NSURL *)url
{
[launchAdImageView sd_setImageWithURL:url];

}
依赖

1.本库依赖于:FLAnimatedImage

安装

1.手动添加:

1.将 XHLaunchAd 文件夹添加到工程目录中
2.导入 XHLaunchAd.h
2.CocoaPods:

1.在 Podfile 中添加 pod ‘XHLaunchAd’
2.执行 pod install 或 pod update
3.导入 XHLaunchAd.h
3.Tips

1.如果发现pod search XHLaunchAd 搜索出来的不是最新版本,需要在终端执行pod repo update命令更新本地spec缓存(需要几分钟),然后再搜索就可以了
2.如果你发现你执行pod install后,导入的不是最新版本,请删除Podfile.lock文件,在执行一次 pod install
3.如果在使用过程中遇到BUG,希望你能Issues我,谢谢(或者尝试下载最新的代码看看BUG修复没有)
系统要求

该项目最低支持 iOS 8.0 和 Xcode 8.0
许可证

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值