简体   繁体   中英

Button not showing on MapKitView in the run time

I am trying to set a button on MapKitView. Unfortunately it is not showing in the run time. And it is set by an auto suggest constraint . 在此处输入图片说明

Try with by making UIButton view as subview of MKMapView .

For example :

class ViewController: UIViewController {

    @IBOutlet  var mapView: MKMapView!       

    @IBOutlet weak var _whareBtnView: UIButton!

    override func viewDidLoad() {
            super.viewDidLoad()
              mapView.addSubview(_whareBtnView)

    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM