/// 当前 view 判定周边路径的方向 privateenumKirovDirection { /// 左方 case left /// 上方 case top /// 右方 case right /// 下方 case bottom } /// 获取指定方向上相邻最近视图点的坐标 /// - Parameters direction 方向 privatefunckirov_nearestViewDistanceInDirection(_direction: KirovDirection) -> CGFloat { guardlet superview = superview else { return-1 } var nearestViewDistance: CGFloat=CGFloat.leastNonzeroMagnitude let point = convert(CGPoint.zero, to: superview) switch direction { case .left: for subview in superview.subviews { if subview !=self { let subviewRight = subview.frame.origin.x + subview.frame.width if subviewRight <= point.x { let distance = point.x - subviewRight if distance < nearestViewDistance { nearestViewDistance = distance } } } } case .top: for subview in superview.subviews { if subview !=self { let subviewBottom = subview.frame.origin.y + subview.frame.height if subviewBottom <= point.y { let distance = point.y - subviewBottom if distance < nearestViewDistance { nearestViewDistance = distance } } } } case .right: for subview in superview.subviews { if subview !=self { let subviewLeft = subview.frame.origin.x if subviewLeft >= point.x { let distance = subviewLeft - point.x if distance < nearestViewDistance { nearestViewDistance = distance } } } } case .bottom: for subview in superview.subviews { if subview !=self { let subviewTop = subview.frame.origin.y if subviewTop >= point.y { let distance = subviewTop - point.y if distance < nearestViewDistance { nearestViewDistance = distance } } } } } if nearestViewDistance ==CGFloat.leastNonzeroMagnitude { nearestViewDistance =-1 } return nearestViewDistance }