Posts

Post not yet marked as solved
3 Replies
1.2k Views
Map(position: $position, selection: $selectedResult) { MapPolyline(coordinates: track).stroke(.blue, lineWidth: 5) } When the @State track: [CLLocationCoordinates] is growing with new data (new coordinates appended) how can we reach that Map and MapPolyline is automatically refreshed?
Posted
by hlmSft.
Last updated
.
Post not yet marked as solved
1 Replies
1.2k Views
Migrating from localizable.strings to string catalog is simple. After migrating the state of 55% are checked okay, 45% are marked with state "new". Why happens this? Reviewing the new strings and marking as "reviewed" would now mean to change each of the 60 "new" marked rows x 4 languages manually - a lot of work. Is there a way to group change the states of all strings?
Posted
by hlmSft.
Last updated
.
Post not yet marked as solved
0 Replies
378 Views
Hello Apple, adopting new LM I have some questions: what do recommend concerning usage of new .reducedAccuracy and startUpdating .heading? when will the new method locationManagerDidChangeAuthorization called? where do you recommend to place init LocationManager? Ihm looking forward hearing from you Best regards Helmut P.S: amazing new features in iOS14. Great! locationManager = CLLocationManager()         print("initLocationManager 1")         //locationManager!.desiredAccuracy = kCLLocationAccuracyBest         locationManager!.desiredAccuracy = kCLLocationAccuracyBestForNavigation         locationManager!.activityType = .automotiveNavigation         locationManager!.distanceFilter = kCLDistanceFilterNone         print("initLocationManager 2")         locationManager!.delegate = self         print("initLocationManager 3")         locationManager!.requestAlwaysAuthorization()         print("initLocationManager 4")         locationManager!.allowsBackgroundLocationUpdates = true         print("initLocationManager 5")
Posted
by hlmSft.
Last updated
.