0

ストーリーボードの VC にボタンがあり、そのアウトレットを使用でき、正常に動作しています。それが行動になると、それは機能していません。

参照用の画像を見つけます。

@IBAction func actionStart(_ sender: Any) {

    if (isStarted == false)
    {
        isStarted = true
        if CLLocationManager.locationServicesEnabled()
        {
            self.tripTimer = Timer.scheduledTimer(timeInterval: 10.0, target: self, selector: #selector(LandingViewController.displayTripTimer), userInfo: nil, repeats: true)
            locationManager.startUpdatingLocation()
        }
    }
}

ビュー階層:

階層を表示

IBアウトレット接続:

IBアウトレット接続

4

0 に答える 0