【发布时间】:2017-08-04 14:43:33
【问题描述】:
当我在模拟器中运行我的项目时,我不断收到此错误。它只发生在 xcode 模拟器中。当我在手机上运行该项目时,它似乎运行良好。
这是我的代码:
extension QuadTreeNode: AnnotationsContainer {
@discardableResult
func add(_ annotation: MKAnnotation) -> Bool {
guard rect.contains(annotation.coordinate) else { return false }
switch type {
case .leaf:
annotations.append(annotation)
// if the max capacity was reached, become an internal node
if annotations.count == QuadTreeNode.maxPointCapacity {
subdivide()
}
case .internal(let children):
// pass the point to one of the children
for child in children where child.add(annotation) {
return true
}
fatalError("rect.contains evaluted to true, but none of the children added the annotation")
}
return true
}
@discardableResult
func remove(_ annotation: MKAnnotation) -> Bool {
guard rect.contains(annotation.coordinate) else { return false }
_ = annotations.map { $0.coordinate }.index(of: annotation.coordinate).map { annotations.remove(at: $0) }
switch type {
case .leaf: break
case .internal(let children):
// pass the point to one of the children
for child in children where child.remove(annotation) {
return true
}
fatalError("rect.contains evaluted to true, but none of the children removed the annotation")
}
return true
}
private func subdivide() {
switch type {
case .leaf:
type = .internal(children: Children(parentNode: self))
case .internal:
preconditionFailure("Calling subdivide on an internal node")
}
}
func annotations(in rect: MKMapRect) -> [MKAnnotation] {
// if the node's rect and the given rect don't intersect, return an empty array,
// because there can't be any points that lie the node's (or its children's) rect and
// in the given rect
guard self.rect.intersects(rect) else { return [] }
var result = [MKAnnotation]()
// collect the node's points that lie in the rect
for annotation in annotations where rect.contains(annotation.coordinate) {
result.append(annotation)
}
switch type {
case .leaf: break
case .internal(let children):
// recursively add children's points that lie in the rect
for childNode in children {
result.append(contentsOf: childNode.annotations(in: rect))
}
}
return result
}
}
在代码中调用此行时似乎会发生错误:
_ = annotations.map { $0.coordinate }.index(of: annotation.coordinate).map { annotations.remove(at: $0) }
我得到的错误是:无法使用类型为“(of:CLLocationCoodinate2D)”的参数列表调用“索引”
不知道为什么我只在模拟器中收到此错误。
【问题讨论】:
-
我真的不知道,但是模拟器可以使用CoreLocation吗?我想也许不会。
-
是的,您可以使用 Xcode 模拟位置。奇怪的是,这对我来说似乎是编译时错误消息,而不是运行时错误的描述......
-
它不应该在你的手机或模拟器上工作,因为
CLLocationCoordinate2Ds 不是Equatable