Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用方法时有没有办法实现 SSL 固定[NSURLConnection sendSynchronousRequest: returningResponse: error:]?
[NSURLConnection sendSynchronousRequest: returningResponse: error:]
不,该方法的可配置性几乎为零,因为它不支持委托回调。您可以得到的最接近的方法是使用信号量或类似的方法在 NSURLSession 周围编写一个包装器,以同步等待完成。
也就是说,通常更容易重写代码以异步执行操作,以尝试强制您的网络代码进入同步环境。