草庐IT

swift - 添加注释后选择带有自定义标注的 MKMarkerAnnotationView

coder 2023-09-09 原文

我有一个 MKMapView,我想在长按手势上添加注释。添加注释后,我想选择注释 View 。我认为这是一个非常简单的请求。

问题是我正在使用带有自定义 rightCalloutAccessoryView 和自定义 detailCalloutAccessoryView 的新 MKMarkerAnnotationView。目前还没有很好的记录,但是 WWDC 2017 Session 237声明当有多个标题/副标题时将显示标注。

不幸的是,我不是这种情况。当我以编程方式(和手动)选择注释时,我得到一个奇怪的双选状态,我可以在其中看到标注和标记:

下面是注释 View 代码:

import Foundation
import MapKit

@available(iOS 11.0, *)
protocol TemporaryUserAnnotationViewDelegate: class {
    func temporaryUserAnnotationViewDidTapOk(title: String?, userAnnotationView: TemporaryUserAnnotationView)
}

@available(iOS 11.0, *)
class TemporaryUserAnnotationView: MKMarkerAnnotationView {

    weak var delegate: TemporaryUserAnnotationViewDelegate?
    var textField: UITextField!

    init(annotation: TemporaryUserAnnotation) {
        super.init(annotation: annotation, reuseIdentifier: TemporaryUserAnnotationMarkerAnnotationView.reuseIdentifier)
        markerTintColor = .lbc_blue
        canShowCallout = true
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    func configure(annotation: TemporaryUserAnnotation) {
        let detailView = UIView()
        detailView.translatesAutoresizingMaskIntoConstraints = false
        textField = UITextField()
        textField.translatesAutoresizingMaskIntoConstraints = false
        textField.placeholder = "Titre"
        detailView.addSubview(textField)
        detailView.heightAnchor.constraint(equalToConstant: 21).isActive = true
        detailView.widthAnchor.constraint(equalToConstant: 100).isActive = true
        textField.centerXAnchor.constraint(equalTo: detailView.centerXAnchor).isActive = true
        textField.centerYAnchor.constraint(equalTo: detailView.centerYAnchor).isActive = true
        textField.heightAnchor.constraint(equalToConstant: 21).isActive = true
        textField.widthAnchor.constraint(equalToConstant: 100).isActive = true
        detailCalloutAccessoryView = detailView

        let rightView = UIView(frame: CGRect(origin: .zero, size: CGSize(width: 50, height: 70)))
        rightView.backgroundColor = .lbc_blue
        let button = UIButton(frame: CGRect(origin: .zero, size: CGSize(width: 50, height: 40)))
        button.setTitle("OK", for: .normal)
        button.setTitleColor(.white, for: .normal)
        button.addTarget(self, action: #selector(tapRightCalloutAccessoryViewButton), for: .touchUpInside)
        rightView.addSubview(button)
        rightCalloutAccessoryView = rightView
    }

    @objc func tapRightCalloutAccessoryViewButton() {
        delegate?.temporaryUserAnnotationViewDidTapOk(title: textField.text, userAnnotationView: self)
    }
}

这是 Controller 代码:

func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
    print(#function)
    if annotation is MKUserLocation { return nil }
    if #available(iOS 11.0, *) {
        switch annotation {
        case let temporarayUserAnnotation as TemporaryUserAnnotation:
            if let view = mapView.dequeue() as? TemporaryUserAnnotationView {
                view.annotation = annotation
                return view
            } else {
                let view = TemporaryUserAnnotationView(annotation: temporarayUserAnnotation)
                view.delegate = self
                view.configure(annotation: temporarayUserAnnotation)
                return view
            }
        default:
            return nil
        }
    } else {
        let identifier = "marker"
        if let view = mapView.dequeueReusableAnnotationView(withIdentifier: identifier) as? MKPinAnnotationView {
            view.annotation = annotation
            return view
        } else {
            return MKPinAnnotationView(annotation: annotation, reuseIdentifier: identifier)
        }
    }
}

我只是这样添加注释:

func addUserAnnotation(coordinate: CLLocationCoordinate2D) {
    let annotation = TemporaryUserAnnotation(coordinate: coordinate)
    mapView.addAnnotation(annotation)
    mapView.selectAnnotation(annotation, animated: true)
}

我还尝试实现 mapView(_:didAdd:) 方法,但结果在标注前面的标记 View 更糟。

任何帮助将不胜感激!谢谢!

最佳答案

我发现了以下解决方法:添加注释时,请稍等片刻,然后再以编程方式选择它:

func addUserAnnotation(coordinate: CLLocationCoordinate2D) {
    let annotation = TemporaryUserAnnotation(coordinate: coordinate)
    mapView.addAnnotation(annotation)
    DispatchQueue.main.asyncAfter(wallDeadline: .now() + .seconds(1)) {
        self.mapView.selectAnnotation(annotation, animated: true)
    }
}

我仍然认为这应该不是必需的,所以如果您有更好的解决方案,请随时在这里发布!

关于swift - 添加注释后选择带有自定义标注的 MKMarkerAnnotationView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46674767/

有关swift - 添加注释后选择带有自定义标注的 MKMarkerAnnotationView的更多相关文章

  1. ruby - Facter::Util::Uptime:Module 的未定义方法 get_uptime (NoMethodError) - 2

    我正在尝试设置一个puppet节点,但ruby​​gems似乎不正常。如果我通过它自己的二进制文件(/usr/lib/ruby/gems/1.8/gems/facter-1.5.8/bin/facter)在cli上运行facter,它工作正常,但如果我通过由ruby​​gems(/usr/bin/facter)安装的二进制文件,它抛出:/usr/lib/ruby/1.8/facter/uptime.rb:11:undefinedmethod`get_uptime'forFacter::Util::Uptime:Module(NoMethodError)from/usr/lib/ruby

  2. ruby - 我需要将 Bundler 本身添加到 Gemfile 中吗? - 2

    当我使用Bundler时,是否需要在我的Gemfile中将其列为依赖项?毕竟,我的代码中有些地方需要它。例如,当我进行Bundler设置时:require"bundler/setup" 最佳答案 没有。您可以尝试,但首先您必须用鞋带将自己抬离地面。 关于ruby-我需要将Bundler本身添加到Gemfile中吗?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/4758609/

  3. ruby - 将 Bootstrap Less 添加到 Sinatra - 2

    我有一个ModularSinatra应用程序,我正在尝试将Bootstrap添加到应用程序中。get'/bootstrap/application.css'doless:"bootstrap/bootstrap"end我在views/bootstrap中有所有less文件,包括bootstrap.less。我收到这个错误:Less::ParseErrorat/bootstrap/application.css'reset.less'wasn'tfound.Bootstrap.less的第一行是://CSSReset@import"reset.less";我尝试了所有不同的路径格式,但它

  4. ruby-on-rails - Rails 3.2.1 中 ActionMailer 中的未定义方法 'default_content_type=' - 2

    我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer

  5. ruby-on-rails - form_for 中不在模型中的自定义字段 - 2

    我想向我的Controller传递一个参数,它是一个简单的复选框,但我不知道如何在模型的form_for中引入它,这是我的观点:{:id=>'go_finance'}do|f|%>Transferirde:para:Entrada:"input",:placeholder=>"Quantofoiganho?"%>Saída:"output",:placeholder=>"Quantofoigasto?"%>Nota:我想做一个额外的复选框,但我该怎么做,模型中没有一个对象,而是一个要检查的对象,以便在Controller中创建一个ifelse,如果没有检查,请帮助我,非常感谢,谢谢

  6. ruby - 主要 :Object when running build from sublime 的未定义方法 `require_relative' - 2

    我已经从我的命令行中获得了一切,所以我可以运行rubymyfile并且它可以正常工作。但是当我尝试从sublime中运行它时,我得到了undefinedmethod`require_relative'formain:Object有人知道我的sublime设置中缺少什么吗?我正在使用OSX并安装了rvm。 最佳答案 或者,您可以只使用“require”,它应该可以正常工作。我认为“require_relative”仅适用于ruby​​1.9+ 关于ruby-主要:Objectwhenrun

  7. ruby - 续集在添加关联时访问many_to_many连接表 - 2

    我正在使用Sequel构建一个愿望list系统。我有一个wishlists和itemstable和一个items_wishlists连接表(该名称是续集选择的名称)。items_wishlists表还有一个用于facebookid的额外列(因此我可以存储opengraph操作),这是一个NOTNULL列。我还有Wishlist和Item具有续集many_to_many关联的模型已建立。Wishlist类也有:selectmany_to_many关联的选项设置为select:[:items.*,:items_wishlists__facebook_action_id].有没有一种方法可以

  8. ruby - 在 Ruby 中有条件地定义函数 - 2

    我有一些代码在几个不同的位置之一运行:作为具有调试输出的命令行工具,作为不接受任何输出的更大程序的一部分,以及在Rails环境中。有时我需要根据代码的位置对代码进行细微的更改,我意识到以下样式似乎可行:print"Testingnestedfunctionsdefined\n"CLI=trueifCLIdeftest_printprint"CommandLineVersion\n"endelsedeftest_printprint"ReleaseVersion\n"endendtest_print()这导致:TestingnestedfunctionsdefinedCommandLin

  9. ruby - 定义方法参数的条件 - 2

    我有一个只接受一个参数的方法:defmy_method(number)end如果使用number调用方法,我该如何引发错误??通常,我如何定义方法参数的条件?比如我想在调用的时候报错:my_method(1) 最佳答案 您可以添加guard在函数的开头,如果参数无效则引发异常。例如:defmy_method(number)failArgumentError,"Inputshouldbegreaterthanorequalto2"ifnumbereputse.messageend#=>Inputshouldbegreaterthano

  10. ruby - 如何在 Grape 中定义哈希数组? - 2

    我使用Ember作为我的前端和GrapeAPI来为我的API提供服务。前端发送类似:{"service"=>{"name"=>"Name","duration"=>"30","user"=>nil,"organization"=>"org","category"=>nil,"description"=>"description","disabled"=>true,"color"=>nil,"availabilities"=>[{"day"=>"Saturday","enabled"=>false,"timeSlots"=>[{"startAt"=>"09:00AM","endAt"=>

随机推荐