• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 如何访问 MKAnnotation 的特定索引

[复制链接]
菜鸟教程小白 发表于 2022-12-13 09:06:25 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我有一个使用 MKAnnotations 填充标记的 mapView。我能够很好地获得注释数组。但是,我如何找出被点击的标记的索引?假设我点击了一个标记并弹出了 MKAnnotation。如何获取此注解实例?

ViewDidAppear 代码:

    for (var i=0; i<latArray.count; i++) {

    let individualAnnotation = Annotations(title: addressArray[i],
        coordinate: CLLocationCoordinate2D(latitude: latArray[i], longitude: longArray[i]))

    mapView.addAnnotation(individualAnnotation)
    }        
    //store annotations into a variable
    var annotationArray = self.mapView.annotations

    //prints out an current annotations in array
    //Result:  [<AppName.Annotations: 0x185535a0>, <AppName.Annotations: 0x1663a5c0>, <AppName.Annotations: 0x18575fa0>, <AppName.Annotations: 0x185533a0>, <AppName.Annotations: 0x18553800>]
    println(annotationArray)

注解类: 导入 MapKit

class Annotations: NSObject, MKAnnotation {
    let title: String
    //let locationName: String
    //let discipline: String
    let coordinate: CLLocationCoordinate2D

    init(title: String, coordinate: CLLocationCoordinate2D) {
       self.title = title
        self.coordinate = coordinate

    super.init()
}

var subtitle: String {
    return title
}
}



Best Answer-推荐答案


MKMapViewDelegate 提供了一个委托(delegate)方法mapView:annotationView:calloutAccessoryControlTapped:实现此方法为您提供了您正在寻找的 MKAnnotation 实例的 MKAnnotationView。您可以调用 MKAnnotationView 的 annotation属性来获取 MKAnnotation 的相应实例。

import UIKit
import MapKit

class ViewController: UIViewController, MKMapViewDelegate {

   @IBOutlet weak var mapView: MKMapView!

   var sortedAnnotationArray: [MKAnnotation] = [] //create your array of annotations.

   //your ViewDidAppear now looks like:
   override func viewDidAppear(animated: Bool) {
       super.viewDidAppear(animated)
       for (var i = 0; i < latArray.count; i++) {
         let individualAnnotation = Annotations(title: addressArray[i], coordinate: CLLocationCoordinate2D(latitude: latArray[i], longitude: longArray[i]))
         mapView.addAnnotation(individualAnnotation) 
         //append the newly added annotation to the array
         sortedAnnotationArray.append(individualAnnotation)
       } 
    }     



  func mapView(mapView: MKMapView!, annotationView view:    MKAnnotationView!, calloutAccessoryControlTapped control: UIControl!) {
       let theAnnotation = view.annotation
        for (index, value) in enumerate(sortedAnnotationArray) {
            if value === theAnnotation {
                println("The annotation's array index is \(index)")
            }
        }
    }
}

关于ios - 如何访问 MKAnnotation 的特定索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31496766/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap