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.
我需要能够使用 https 连接到服务器,我想知道是否有推荐的方法在 iPhone 上执行此操作不是: - 未记录的 api 调用 - 不需要在应用程序包中手动存储证书
谢谢大家。
NSURLRequest 和 NSURLConnection 是你要找的。从这些文档开始。
使用 https 有什么问题?URL 加载系统(即 NSURLConnection)和 WebKit 都支持它开箱即用。我知道的唯一问题是使用不受信任的证书,而我知道的唯一解决方案是(不幸的是)使用私有 API 调用。但是你不应该发布一个依赖于与使用不受信任证书的服务器通信的应用程序。