当我将地址字符串传递给if collectionView == collectionView1 {
// code that returns some cell
} else if collectionView == collectionView2 {
// code that returns some other cell
} else if collectionView == collectionView3 {
// code that returns yet another cell
}
fatalError("Please add another else if to handle the cell of collection view!")
时,该函数永远不会执行。调试时,它永远不会进入geocodeAddressString()而是跳过。 CLGeocoder.geocodeAddressString()
确实包含有效地址。
location1
有谁知道为什么会这样?
由于