博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第26月第28天 avplayer cache
阅读量:5041 次
发布时间:2019-06-12

本文共 1479 字,大约阅读时间需要 4 分钟。

1.urlsession https

- (void)URLSession:(NSURLSession *)sessiondidReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition disposition, NSURLCredential *credential))completionHandler{   //AFNetworking中的处理方式    NSURLSessionAuthChallengeDisposition disposition = NSURLSessionAuthChallengePerformDefaultHandling;    __block NSURLCredential *credential = nil;      //判断服务器返回的证书是否是服务器信任的    if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust]) {        credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust];        /*disposition:如何处理证书     NSURLSessionAuthChallengePerformDefaultHandling:默认方式处理         NSURLSessionAuthChallengeUseCredential:使用指定的证书    NSURLSessionAuthChallengeCancelAuthenticationChallenge:取消请求         */        if (credential) {            disposition = NSURLSessionAuthChallengeUseCredential;        } else {            disposition = NSURLSessionAuthChallengePerformDefaultHandling;        }    } else {        disposition = NSURLSessionAuthChallengeCancelAuthenticationChallenge;    }    //安装证书    if (completionHandler) {        completionHandler(disposition, credential);    }}

https://www.jianshu.com/p/4b5d2d47833d

2.avplayer cache

 

https://github.com/XTShow/XTAudioPlayer/

 

https://www.jianshu.com/p/c157476474f1

 

https://github.com/newyjp/JPVideoPlayer

转载于:https://www.cnblogs.com/javastart/p/10030546.html

你可能感兴趣的文章
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
Extjs String转Json
查看>>
二叉树的遍历问题总结
查看>>
一位数据挖掘成功人士 给 数据挖掘在读研究生 的建议
查看>>
Python3.6.0安装
查看>>
hdu1049
查看>>
H5项目常见问题及注意事项
查看>>
索尼(SONY) SVE1512S7C 把WIN8降成WIN7图文教程
查看>>
时间模块 && time datetime
查看>>
jquery自动生成二维码
查看>>
spring回滚数据
查看>>