繁体   English   中英

如何设置UITabBar背景图像更改?

[英]How to Set UITabBar background image change?

我如何基于与当前位置的距离对数组进行排序并在tableview中显示。当我使用排序时,没有得到任何适当的结果,我获得了具有随机距离的数组。任何人都可以指导我解决这个问题

根据与当前位置的距离以最佳方式对位置进行排序,将具有结构形式的位置点

struct LocationPoints {
    var latitude: CLLocationDegrees
    var longitude: CLLocationDegrees

    func distance(to currentLocation: CLLocation) -> CLLocationDistance {
        return CLLocation(latitude: self.latitude, longitude: self.longitude).distance(from: currentLocation)
    }
}

假设您有一个具有经度和纬度的LocationPoints数组

var coordinates: [LocationPoints] = []
            coordinates.append(LocationPoints(latitude: Double(25), longitude: Double(24)))
                coordinates.append( LocationPoints(latitude: Double(23), longitude: Double(22)))

排序功能

    coordinates = sortLocationsWithCurrentLocation(locations: coordinates, currentLocation: CLLocation(latitude: Double(20), longitude: Double(21)))




    func sortLocationsWithCurrentLocation(locations:[LocationPoints],currentLocation:CLLocation) -> [LocationPoints] {
//set here current position as current location
            let currentPosition : CLLocation = CLLocation(latitude: 30, longitude: 24)
            let sortedLocations = locations.sorted(by: { (point1 : LocationPoints, point2 :LocationPoints) -> Bool in
                if point1.distance(to: currentPosition) < point2.distance(to: currentPosition)
                {
                    return true
                }
               return false
            })
            return sortedLocations
        }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM