初始化 NSURLComponents 实例时,将 false 和 true 传递给 'resolvingAgainstBaseURL' 有什么区别?

What's the difference between passing false and true to 'resolvingAgainstBaseURL' when initialize a NSURLComponents instance?

我不明白这两种调用方式有什么区别:

NSURLComponents(URL: url, resolvingAgainstBaseURL: true)

NSURLComponents(URL: url, resolvingAgainstBaseURL: false)

而且我发现文档的解释很难理解... 有人可以给我一个简单的例子来说明 api 是如何工作的吗? (我尝试了很多不同的参数组合,但是它们产生的结果是一样的...)

只有从 NSURL 创建 URL 组件才会有所不同 是相对于另一个 NSURL:

创建的
let baseURL = NSURL(string: "http://server/foo/")!
let url = NSURL(string: "bar/file.html", relativeToURL: baseURL)!
print(url.absoluteString)
// "http://server/foo/bar/file.html"

resolvingAgainstBaseURL == false、URL 个组件 只代表 URL:

的相对部分
let comp1 = NSURLComponents(URL: url, resolvingAgainstBaseURL: false)!
print(comp1.string!)
// "bar/file.html"

resolvingAgainstBaseURL == true、URL 个组件 表示完全解析 URL:

let comp2 = NSURLComponents(URL: url, resolvingAgainstBaseURL: true)!
print(comp2.string!)
// "http://server/foo/bar/file.html"