可以使用不同的配置多次创建 NSURLSession 对象吗?

Can NSURLSession objects be created multiple times with different configurations?

我是否可以在需要时使用不同的配置创建会话对象,或者对创建会话对象有任何限制吗?

创建会话对象没有任何限制。事实上,文档明确鼓励创建额外的会话来处理具有相同会话配置的请求:

With the NSURLSession API, your app creates one or more sessions, each of which coordinates a group of related data transfer tasks. For example, if you are writing a web browser, your app might create one session per tab or window, or one session for interactive use and another session for background downloads.

当然,这并不意味着您应该为您发出的每个请求创建一个单独的会话。