我有一个工作循环来为一些工作数据点设置标题和字幕元素的注释。我想要在相同的循环结构中执行的操作是将图钉颜色设置为“紫色”,而不是默认值。我不知道要怎么做才能进入我的MapView来相应地设置图钉。
我的工作循环和某些尝试…
....
for var index = 0; index < MySupplierData.count; ++index {
// Establish an Annotation
myAnnotation = MKPointAnnotation();
... establish the coordinate,title, subtitle properties - this all works
self.theMapView.addAnnotation(myAnnotation) // this works great.
// In thinking about PinView and how to set it up I have this...
myPinView = MKPinAnnotationView();
myPinView.animatesDrop = true;
myPinView.pinColor = MKPinAnnotationColor.Purple;
// Now how do I get this view to be used for this particular Annotation in theMapView that I am iterating through??? Somehow I need to marry them or know how to replace these attributes directly without the above code for each data point added to the view
// It would be nice to have some kind of addPinView.
}
您需要实现viewForAnnotation
委托方法并MKAnnotationView
从那里返回一个(或子类)。
就像在Objective-C中一样-基础SDK的工作方式相同。
MKPinAnnotationView
从for
添加注释的循环中删除创建的内容,并改为实现委托方法。
这是viewForAnnotation
Swift中委托方法的示例实现:
func mapView(mapView: MKMapView!,
viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {
if annotation is MKUserLocation {
//return nil so map view draws "blue dot" for standard user location
return nil
}
let reuseId = "pin"
var pinView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId) as? MKPinAnnotationView
if pinView == nil {
pinView = MKPinAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
pinView!.canShowCallout = true
pinView!.animatesDrop = true
pinView!.pinColor = .Purple
}
else {
pinView!.annotation = annotation
}
return pinView
}
问题内容: 我正在尝试在Swift中使用Map Kit。我尝试在地图上显示该区域,一个图钉(MKPinAnnotationView)和当前位置。所有显示正常。我尝试添加“披露按钮”并拦截其点击。添加了“披露”按钮,但无法进行拦截窃听。 具有方法的功能不起作用。 这是一个示例代码: 问题答案: 该委托方法必须命名。 您不能使用自己的名字,例如。 这适用于任何委托方法,并由协议规定。 所以应该是:
我正在编写一个 Java 程序。它应该打印出年终账户余额,今年投资,年度回报和年度数量。前任: 第一年-投资10000美元,投资额为10%,最终投资额为11000美元第二年-在现有11000美元的基础上再投资10000美元,现在你有21000美元,年回报率为2100美元,最终投资额为23100美元,持续投资6年。 我的代码打印了所有6年,但与第一年的值相同。循环有什么问题吗?非常感谢。这里我的代码
自定义个人地图,即将自己绘制的地图代替ios自带的地图。并在个人地图上加上地图标注。 [Code4App.com]
问题内容: 我想在数据库中复制实体集合。我使用以下方法检索该集合: 现在,我想复制“类别”列表,并使用EntityManager保留它。我正在使用JPA /hibernate。 更新 在知道如何分离我的实体之后,我需要知道要分离什么:当前代码: 这引发了异常。 我认为他想重新加载类别,因为我已经将它们分离了。我现在该怎么办? 问题答案: 亚伦·迪吉拉(AaronDiguila)的答案是去这里的方式
我正在@Async和@Transactional方法中的@Service类中执行一些持久化操作。 在这种方法中,我们持久化一些对象,然后在同一事务中持久化与这些已持久化对象相关的新对象。 JPA抛出一个异常,因为他认为这个相关对象没有被持久化: 这是我的服务类结构: 我想是与事务和异步方法有关,因为相同的代码在没有Async注释时工作。 我还尝试在Transactional注释中使用传播,但不起作
问题内容: 我正在快速的ios应用程序中实现。 目前,在几个面板上,我正在侦听服务器并等待传入消息。我这样做是通过在每个面板中调用该函数: 但是我注意到这是一个错误的方法,我需要更改它-现在我只想开始监听一次传入的消息,并且当出现任何消息时-将此消息传递给任何侦听它的面板。 所以我想通过NSNotificationCenter传递传入的消息。到目前为止,我能够传递发生了某些事情的信息,但无