Value of type 'Results' has no member 'latitude’
外部フレームワークとしましてRealmを使用し、
CLLocationから値を取得しまして
var locationManager: CLLocationManager!
var locations: Results<Location>!
// Make Location from CLLocation
private func makeLocation(rawLocation: CLLocation) -> Location {
let location = Location()
location.latitude = rawLocation.coordinate.latitude
location.longitude = rawLocation.coordinate.longitude
return location
である場合に
let location = locations
としまして
let valString:String = "\(location.latitude),\(location.longitude)"
というようにStringにしたいと考えていますが、 Value of type 'Results<Location>' has no member 'latitude'
というエラーになってしまいます。どのような解決方法がございますでしょうか。よろしくお願い致します。