मैं Xcode 9 बीटा, iOS 11 में गूगल मैप्स का उपयोग कर रहा हूं।
मुझे निम्नानुसार लॉग करने के लिए एक त्रुटि मिल रही है:
मुख्य थ्रेड चेकर: UI API को एक बैकग्राउंड थ्रेड पर कॉल किया जाता है: - [UIApplication applicationState] PID: 4442, TID: 837820, थ्रेड नाम: com.google.Maps.LabelingBehavior, कतार नाम: com.apple.root.default-qos.overcommit। , QoS: 21
ऐसा क्यों होगा क्योंकि मैं लगभग निश्चित हूं कि मैं अपने कोड में मुख्य थ्रेड से किसी भी इंटरफ़ेस तत्वों को नहीं बदल रहा हूं।
override func viewDidLoad() {
let locationManager = CLLocationManager()
locationManager.requestAlwaysAuthorization()
locationManager.requestWhenInUseAuthorization()
if CLLocationManager.locationServicesEnabled() {
locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
locationManager.startUpdatingLocation()
}
viewMap.delegate = self
let camera = GMSCameraPosition.camera(withLatitude: 53.7931183329367, longitude: -1.53649874031544, zoom: 17.0)
viewMap.animate(to: camera)
}
func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
let locValue:CLLocationCoordinate2D = manager.location!.coordinate
print("locations = \(locValue.latitude) \(locValue.longitude)")
}
func mapView(_ mapView: GMSMapView, willMove gesture: Bool) {
}
func mapView(_ mapView: GMSMapView, idleAt position: GMSCameraPosition) {
if(moving > 1){
moving = 1
UIView.animate(withDuration: 0.5, delay: 0, animations: {
self.topBarConstraint.constant = self.topBarConstraint.constant + (self.topBar.bounds.height / 2)
self.bottomHalfConstraint.constant = self.bottomHalfConstraint.constant + (self.topBar.bounds.height / 2)
self.view.layoutIfNeeded()
}, completion: nil)
}
moving = 1
}
// Camera change Position this methods will call every time
func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {
moving = moving + 1
if(moving == 2){
UIView.animate(withDuration: 0.5, delay: 0, animations: {
self.topBarConstraint.constant = self.topBarConstraint.constant - (self.topBar.bounds.height / 2)
self.bottomHalfConstraint.constant = self.bottomHalfConstraint.constant - (self.topBar.bounds.height / 2)
self.view.layoutIfNeeded()
}, completion: nil)
}
DispatchQueue.main.async {
print("Moving: \(moving) Latitude: \(self.viewMap.camera.target.latitude)")
print("Moving: \(moving) Longitude: \(self.viewMap.camera.target.longitude)")
}
}
mapView(_:didChange)
आप भेजने कर रहे हैंprint
मुख्य कतार में बयान। क्या आप पहले से ही मुख्य कतार में नहीं हैं? यदि नहीं, तो आपकोanimate
कॉल को मुख्य कतार में भेजना होगा । मैंdispatchPrecondition(condition: .onQueue(.main))
उन UI अपडेट से पहले कुछ डालने का सुझाव दूंगा , बस यह सुनिश्चित करने के लिए।