- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想计算用户和所有注释之间的距离。
我的注释来自一个经过解析的 csv 文件。我的注释位于 Location
类中。除了距离计算,一切正常。
为了计算距离,我找到了这段代码:
-(void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)newLocation
{
for (Location *annotation in self.mapView.annotations) {
CLLocationCoordinate2D coord = [annotation coordinate];
CLLocationCoordinate2D userCoordinate = [[[self.mapView userLocation] location] coordinate];
CLLocation *myLoc = [[CLLocation alloc] initWithLatitude:coord.latitude longitude:coord.longitude];
CLLocation *userLoc = [[CLLocation alloc] initWithLatitude:userCoordinate.latitude longitude:userCoordinate.longitude];
annotation.distance = [myLoc distanceFromLocation:userLoc];
NSLog(@"Distance is = %f", annotation.distance);
} // ! CRASH !
NSArray *sortedArray;
sortedArray = [self.mapView.annotations sortedArrayUsingComparator:^NSComparisonResult(id a, id b) {
NSNumber *first = [NSNumber numberWithDouble:[(Location*)a distance]];
NSNumber *second = [NSNumber numberWithDouble:[(Location*)b distance]];
return [first compare:second];
}];
但是我的应用程序在循环结束之前崩溃了。我发现,有断点,有一个奇怪的注释(MKUserLocation*
而不是 Location*
);在这个 MKUserLocation*
之后,应用程序崩溃了:
不正常(崩溃):
确定(没有崩溃):
为什么在我的 self.mapView.annotations
中有 MKUserLocation
?如何忽略它?
日志:
2014-09-22 06:01:47.965 MyFirstGPS2[472:60b] -[MKUserLocation setDistance:]: unrecognized selector sent to instance 0x9db0bb0
2014-09-22 06:01:48.030 MyFirstGPS2[472:60b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[MKUserLocation setDistance:]: unrecognized selector sent to instance 0x9db0bb0'
*** First throw call stack:
(
0 CoreFoundation 0x01d971e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x01b168e5 objc_exception_throw + 44
2 CoreFoundation 0x01e34243 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
3 CoreFoundation 0x01d8750b ___forwarding___ + 1019
4 CoreFoundation 0x01d870ee _CF_forwarding_prep_0 + 14
5 MyFirstGPS2 0x00005043 -[HPViewController mapView:didUpdateUserLocation:] + 1203
6 MapKit 0x006825e6 -[MKMapView(MKHeadingAdditions) _stopTrackingHeading] + 469
7 MapKit 0x00666a92 -[MKMapView _setUserTrackingMode:animated:fromTrackingButton:] + 301
8 MapKit 0x00666960 -[MKMapView setUserTrackingMode:animated:] + 56
9 MapKit 0x00682176 -[MKMapView(MKHeadingAdditions) disableHeadingTracking:] + 65
10 MapKit 0x00669524 -[MKMapView _didChangeRegionMidstream:] + 672
11 MapKit 0x00671fbd -[MKMapView mapLayerDidChangeVisibleRegion:] + 66
12 VectorKit 0x0407a15e -[VKMapView mapDidChangeVisibleRegion:] + 78
13 VectorKit 0x040821fe -[VKMapCanvas cameraControllerDidChangeCameraState:] + 46
14 VectorKit 0x0409f1f7 -[VKMapCameraController updatePanWithTranslation:] + 231
15 VectorKit 0x0408268f -[VKMapCanvas updatePanWithTranslation:] + 63
16 VectorKit 0x0407aca9 -[VKMapView updatePanWithTranslation:] + 73
17 MapKit 0x0069e30b -[MKMapGestureController handlePan:] + 530
18 UIKit 0x00b724f4 _UIGestureRecognizerSendActions + 230
19 UIKit 0x00b71168 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 383
20 UIKit 0x00b72bdd -[UIGestureRecognizer _delayedUpdateGesture] + 60
21 UIKit 0x00b7613d ___UIGestureRecognizerUpdate_block_invoke + 57
22 UIKit 0x00b760be _UIGestureRecognizerRemoveObjectsFromArrayAndApplyBlocks + 317
23 UIKit 0x00b6c7ac _UIGestureRecognizerUpdate + 199
24 UIKit 0x00817a5a -[UIWindow _sendGesturesForEvent:] + 1291
25 UIKit 0x00818971 -[UIWindow sendEvent:] + 1021
26 UIKit 0x007ea5f2 -[UIApplication sendEvent:] + 242
27 UIKit 0x007d4353 _UIApplicationHandleEventQueue + 11455
28 CoreFoundation 0x01d2077f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
29 CoreFoundation 0x01d2010b __CFRunLoopDoSources0 + 235
30 CoreFoundation 0x01d3d1ae __CFRunLoopRun + 910
31 CoreFoundation 0x01d3c9d3 CFRunLoopRunSpecific + 467
32 CoreFoundation 0x01d3c7eb CFRunLoopRunInMode + 123
33 GraphicsServices 0x03acf5ee GSEventRunModal + 192
34 GraphicsServices 0x03acf42b GSEventRun + 104
35 UIKit 0x007d6f9b UIApplicationMain + 1225
36 MyFirstGPS2 0x00013592 main + 130
37 libdyld.dylib 0x0258a701 start + 1
38 ??? 0x00000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
注意:我正在使用此页面中的代码来解析 csv 文件,我认为这不是问题所在:http://blog.smartfrog.fr/post/32123941502/tutorial-ios-mapkit
最佳答案
MKUserLocation
不是一个“奇怪”的注解。
当您将 showsUserLocation
设置为 YES
时,它是 map View 添加的用户位置(蓝点)注释的文档类。
map View 的annotations
数组包括添加到 map 的所有 注释——无论是由您还是由 map View 添加(另请注意,这些注释不会以任何特定顺序).
为确保您只处理 Location
类型的注释,您可以在使用 isKindOfClass
方法处理之前检查注释对象的类。
如果注释不属于该类,则跳过它(继续
循环)。
排序数组的代码会遇到类似的问题,因为它会尝试访问 MKUserLocation
注释上的 distance
属性。
与其尝试从 map View 的 annotations
数组创建排序数组,我建议在 for 循环(在同时设置 distance
) 然后对该数组进行排序。
在 for 循环和排序更改中使用 isKindOfClass
的示例:
-(void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)newLocation
{
if (newLocation == nil) {
//can happen if still waiting for user permission
return;
}
if (!CLLocationCoordinate2DIsValid(newLocation.coordinate)) {
//can happen if just resumed from some time in the background
return;
}
//Declare and set user location variables outside the for-loop
//since they won't be changing during the loop...
CLLocationCoordinate2D userCoordinate = [[[self.mapView userLocation] location] coordinate];
CLLocation *userLoc = [[CLLocation alloc] initWithLatitude:userCoordinate.latitude longitude:userCoordinate.longitude];
//declare array in which you will put your Location annotations for sorting later...
NSMutableArray *locAnnArray = [NSMutableArray array];
//Declare the loop variable as a generic id<MKAnnotation>
for (id<MKAnnotation> annotation in self.mapView.annotations) {
//Before processing the annotation, check it it's of type Location...
if (! [annotation isKindOfClass:[Location class]]) {
continue;
}
//Cast annotation to Location so we can see the distance property...
Location *locAnn = (Location *)annotation;
CLLocationCoordinate2D coord = [locAnn coordinate];
CLLocation *myLoc = [[CLLocation alloc] initWithLatitude:coord.latitude longitude:coord.longitude];
locAnn.distance = [myLoc distanceFromLocation:userLoc];
NSLog(@"Distance is = %f", locAnn.distance);
//Add Location annotation to local array for later sorting...
[locAnnArray addObject:locAnn];
}
//Sort our array of Location annotations...
[locAnnArray sortUsingComparator:^NSComparisonResult(id a, id b) {
NSNumber *first = [NSNumber numberWithDouble:[(Location*)a distance]];
NSNumber *second = [NSNumber numberWithDouble:[(Location*)b distance]];
return [first compare:second];
}];
//do something with the sorted array...
//...
}
关于ios - 为什么我的注释中有 MKUserLocation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25975951/
所以`MKAnnotation's。有趣的东西。 我的问题: 注释的标题和副标题有什么区别?这对注释的视觉组件有何影响? MKPinAnnotationView 和 MKAnnotationView
我正在使用 JBoss 工具将 DB 模式反向工程到 POJO 中。具体来说,我在 hibernatetool ANT 任务中使用了 hbm2java 选项。在 hbm2java 选项下,您可以指定
假设我有这段文字: cat file /* comment */ not a comment /* another comment */ /* delete this * /* multiline
我明白,如果你///在类、字段、方法或属性上方 Visual Studio 将开始为您建立 XML 样式的注释。 但是,我在哪里可以为我的命名空间和/或库添加 XML 注释... 例如: .NET F
int API_VERSION = 21; @TargetApi(API_VERSION)在Android中用于指定该方法/类支持API_VERSION及以下。 我们是否可以镜像类似的东西,指定仅支持
Closed. This question needs to be more focused。它当前不接受答案。
假设我有一个界面如下。 public interface MyInterface{ /** * This method prints hello */ void sayHello();
我已将 Jboss 应用程序迁移到 WebSphere Liberty。我必须删除所有 Jboss 引用库。在这样做的同时,我在某些注释中面临问题。 Jboss 应用程序使用 @SecurityDom
在本教程中,您将了解 JavaScript 注释,为什么要使用它们以及在示例的帮助下如何使用它们。 JavaScript 注释是程序员可以添加的提示,以使代码更易于阅读和理解。JavaScri
我正在建立一个博客,为了发表评论,我有这个 CSS。 #comments { position:absolute; border: 1px solid #900; border-width: 1
我正在尝试在单元格中插入评论。我正在尝试按照代码进行评论,但它没有在创建的 excel 中显示评论。我正在创建 .xls 扩展名。 $objPHPExcel->getActiveSheet()->ge
我正在使用 TS 在 MarionetteJS 上编写项目,我想使用注释来注册路由。例如: @Controller class SomeController { @RouteMapping("so
我有一个应用程序可以在页面上生成大量注释。用户可以单击页面上的任意位置以创建快速注释(例如 Acrobat Pro)可以在一般 中使用一些 javascript 行添加和删除这些注释
是否有 JavaScript 注释? 当然 JavaScript 没有它们,但是是否有额外的库或建议的语言扩展,例如 @type {folder.otherjsmodule.foo} function
Java 中注解的目的是什么?我有一个模糊的想法,认为它们介于注释和实际代码之间。它们在运行时会影响程序吗? 它们的典型用法是什么? 它们是 Java 独有的吗?有 C++ 等价物吗? 最佳答案 注解
其实我们在 Ruby 基础语法 已经比较详细的介绍了 Ruby 语言中的注释 Ruby 解释器会忽略注释语句 注释会对 Ruby 解释器隐藏一行,或者一行的一部分,或者若干行。 Ruby 中的注
我正在 try catch VBA 注释。到目前为止,我有以下内容 '[^";]+\Z 它捕获以单引号开头但在字符串结尾之前不包含任何双引号的任何内容。即它不会匹配双引号字符串中的单引号。 dim s
有没有办法在'svn commit'上将提交注释添加到更改的文件中。有人告诉我有一种方法可以用 cvs 做到这一点,但我们使用 svn。目前,我们使用“$Revision”关键字将修订号添加到更改的文
我正在尝试通过 ManyToMany 注释自动对报告的结果进行排序 @OrderBy : /** * @ORM\ManyToMany(targetEntity="Artist", inversedB
我正在使用 JBoss 5 GA,我创建了一个测试 session bean 和本地接口(interface)。我创建了一个 servlet 客户端。我尝试使用 @EJB 将接口(interface)
我是一名优秀的程序员,十分优秀!