gpt4 book ai didi

swift - 游戏结束风格弹出 View

转载 作者:行者123 更新时间:2023-11-30 10:18:36 25 4
gpt4 key购买 nike

我很难编写一个弹出 View ,以便在计时器结束后显示在屏幕上。我正在尝试实现在游戏结束时弹出的“游戏结束”样式屏幕,要求您再次玩、重新启动、共享等。目前我可以提示 UIAlertView,但这不是我想要的。我想弹出一个与它类似的“游戏结束”屏幕,因为我想设计它的样式。有任何想法吗?

 let alert = UIAlertView(title: "Game Over", message:"Try again...", delegate: nil, cancelButtonTitle: "Cancel")

alert.addButtonWithTitle("Restart")
alert.addButtonWithTitle("Share")
alert.addButtonWithTitle("Rate")
alert.show()

timer.invalidate()

最佳答案

您可以创建一个UIView,然后将其显示为动画。像这样:

var gameOver = UIView(frame: CGRectMake(100, 100, 0, 0))
gameOver.backgroundColor = UIColor.redColor()
self.view.addSubview(gameOver)

//Call whenever you want to show it and change the size to whatever size you want
UIView.animateWithDuration(2, animations: {
gameOver.frame.size = CGSizeMake(100, 100)
})

如您所见,首先创建一个宽度为 0、高度为 0 的 UIView。之后,您调用 animateWithDuration 并在 2 秒内将其大小调整为 100 宽度和 100 高度。

然后你可以添加任何你想要的按钮等。您还可以为您的 UIView 创建一个 .xib 文件。

关于swift - 游戏结束风格弹出 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28664433/

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