gpt4 book ai didi

ios - 在iOS游戏开发中以Swift(Xcode)显示获胜者时出错

转载 作者:行者123 更新时间:2023-12-01 18:34:20 25 4
gpt4 key购买 nike

我在游戏中设定了以下获胜条件:

    var player1Score = ""

var player1Name = ""

var player2Score = ""

var player2Name = ""

if (player1Score > player2Score) {

playerWinsLabel.text = "\(player1Name) YOU WIN!"

}
else if (player2Score > player1Score) {

playerWinsLabel.text = "\(player2Name) YOU WIN!"

}
else {

playerWinsLabel.text = "IT'S A TIE!"

}
但是,只要player1Score达到100+,并且player2Score <100,就会显示playerWinsLabel.text(player2 YOU WIN!)。但是,它应该显示出来(player1 YOU WIN!)。除了这种情况,它工作正常。任何人都可以让我知道我的代码出了什么问题。谢谢!

最佳答案

您将它们作为字符串处理,而应将它们设置为整数

var player1Score = 0 
var player2Score = 0
小于100可能意味着2 ... 9是最左边的值,在字符串比较中100+大于1

关于ios - 在iOS游戏开发中以Swift(Xcode)显示获胜者时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62948147/

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