我在情节提要中的 VC 中有 Button,我可以使用它的出口,它工作正常。当涉及到行动时,它不起作用。
查找图像以供参考。
@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插座连接: