gpt4 book ai didi

ios - 这应该如何正确地从 Objective C 转换为 swift 3

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:37:37 26 4
gpt4 key购买 nike

首先,我对任何编程语言都很陌生。所以要温柔。我正在尝试将 Objective-C 中的这段代码翻译成 swift 3

NSArray *points = @[[NSValue valueWithCGPoint:rectangleFeature.topLeft],[NSValue valueWithCGPoint:rectangleFeature.topRight],[NSValue valueWithCGPoint:rectangleFeature.bottomLeft],[NSValue valueWithCGPoint:rectangleFeature.bottomRight]];

CGPoint min = [points[0] CGPointValue];
CGPoint max = min;
for (NSValue *value in points)
{
CGPoint point = value.CGPointValue;
min.x = fminf(point.x, min.x);
min.y = fminf(point.y, min.y);
max.x = fmaxf(point.x, max.x);
max.y = fmaxf(point.y, max.y);
}

CGPoint center =
{
0.5f * (min.x + max.x),
0.5f * (min.y + max.y),
};

NSNumber *(^angleFromPoint)(id) = ^(NSValue *value)
{
CGPoint point = value.CGPointValue;
CGFloat theta = atan2f(point.y - center.y, point.x - center.x);
CGFloat angle = fmodf(M_PI - M_PI_4 + theta, 2 * M_PI);
return @(angle);
};

NSArray *sortedPoints = [points sortedArrayUsingComparator:^NSComparisonResult(id a, id b)
{
return [angleFromPoint(a) compare:angleFromPoint(b)];
}];

到目前为止,我已经能够在 swift 3 中做到这一点

let points: NSArray = [NSValue(cgPoint: rectangleFeature!.topLeft), NSValue(cgPoint: rectangleFeature!.topRight), NSValue(cgPoint: rectangleFeature!.bottomLeft), NSValue(cgPoint: rectangleFeature!.bottomRight)]
var min: CGPoint = (points[0] as! NSValue).cgPointValue
var max: CGPoint = min
for value in points {
let point: CGPoint = (value as! NSValue).cgPointValue
min.x = CGFloat(fminf(Float(point.x), Float(min.x)))
min.y = CGFloat(fminf(Float(point.y), Float(min.y)))
max.x = CGFloat(fmaxf(Float(point.x), Float(max.x)))
max.y = CGFloat(fmaxf(Float(point.y), Float(max.y)))
}
var center: CGPoint = [0.5 * (min.x + max.x), 0.5 * (min.y + max.y)]
var angleFromPoint: ((Any) -> NSNumber)?? = {(value: NSValue) in
var point: CGPoint = value.cgPointValue
var theta: CGFloat = atan2f(point.y - center.y, point.x - center.x)
var angle: CGFloat = fmodf(.pi - M_PI_4 + theta, 2 * .pi)
return angle
}
var sortedPoints: NSArray = [(points).sortedArray(comparator: {(a: Any, b: Any) -> ComparisonResult in
return angleFromPoint(a).compare(angleFromPoint(b))
})]

问题是变量 center 抛出编译器错误“表达式太复杂,无法在合理的时间内解决;考虑将表达式分解为不同的子表达式”现在我已经尝试了所有我能想到的或可以在谷歌搜索中找到的方法,但我不知道如何解决这个问题。我还是很青涩。下一个问题是变量 angleFromPoint 抛出编译器错误“无法将类型 '(NSValue) ->_' 的值转换为指定类型 '((Any) -> NSNumber)??”我也不知道如何解决这个问题。我尝试过类型转换和强制类型转换,但没有运气,也可能不是最佳实践。最后一个问题是在变量 sortedPoints 中抛出一个编译器错误“可选类型的值'((Any) -> NSNumber)?? not unwrapped; did you mean to use '!'要么 '?'?”在返回 angleFromPoint(a).compare(angleFromPoint(b)) 时。现在我也尝试打开可选值但没有运气。当我这样做时,它只是一直说同样的错误。我从 here 获得了这个 Objective-C 代码所以请看看那里了解我需要它做什么。它在 Objective-C 中完美运行,但是我对 Objective-C 没有任何理解,我可能只需要求助于创建一个 Objective-C 类来放入它并从 swift 中调用它,尽管我希望它在 swift 中,所以我可以维护它,并在需要时进行改进。谢谢你的帮助。希望比我聪明的人能够理解这一点并阐明它。

最佳答案

如果你打算使用 Swift,我会停止使用 NSArray并使用 Swift 数组。然后你可以有一个简单的数组 CGPoint值,消除所有这些 NSValue我们在 Objective-C 中不得不做的蠢事:

let points = [
rectangleFeature.topLeft,
rectangleFeature.topRight,
rectangleFeature.bottomLeft,
rectangleFeature.bottomRight
]

然后您可以直接遍历该数组:

var minimum = points[0]
var maximum = points[0]
for point in points {
minimum.x = min(minimum.x, point.x)
minimum.y = min(minimum.y, point.y)
maximum.x = max(maximum.x, point.x)
maximum.y = max(maximum.y, point.y)
}

(理论上您可以使用 reduce ,但使用 for 循环就像您的示例一样容易。此外,我拼写了 minimummaximum 变量以避免与函数发生任何可能的混淆同名。)

然后,您可以定义您的 angleFromPoint返回CGFloat而不是乱搞 NSNumber :

let center = CGPoint(x: (minimum.x + maximum.x) / 2, y: (minimum.y + maximum.y) / 2)
let angle = { (point: CGPoint) -> CGFloat in
let theta = atan2(point.y - center.y, point.x - center.x)
return fmod(.pi * 3.0 / 4.0 + theta, 2 * .pi)
}

最后,因为你的闭包现在返回简单的数字类型,你可以使用更直观的 <运算符,而不是 .compare :

let sortedPoints = points.sorted { angle($0) < angle($1) }

所以,把所有这些放在一起:

let points = [
rectangleFeature.topLeft,
rectangleFeature.topRight,
rectangleFeature.bottomLeft,
rectangleFeature.bottomRight
]

var minimum = points[0]
var maximum = points[0]
for point in points {
minimum.x = min(minimum.x, point.x)
minimum.y = min(minimum.y, point.y)
maximum.x = max(maximum.x, point.x)
maximum.y = max(maximum.y, point.y)
}
let center = CGPoint(x: (minimum.x + maximum.x) / 2, y: (minimum.y + maximum.y) / 2)
let angle = { (point: CGPoint) -> CGFloat in
let theta = atan2(point.y - center.y, point.x - center.x)
return fmod(.pi * 3.0 / 4.0 + theta, 2 * .pi)
}
let sortedPoints = points.sorted { angle($0) < angle($1) }

关于ios - 这应该如何正确地从 Objective C 转换为 swift 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42474408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com