Xcode 中的一个 IBAction 可以有多个 UIAlertView 吗?
是否可以为 Xcode 中的一个 IBAction 编写多个 UIAlertView 来随机显示。例如:我正在制作一个随机显示多个问题的应用程序,当按下提交按钮时,会显示一条警报,说明答案是否正确。我希望警报有不同的消息,例如一次显示一条消息,然后下一次随机显示一条不同的消息。我该如何编程呢?
Is it possible to program multiple UIAlertViews for one IBAction in Xcode to show at random. For example: I am making an app with multiple questions shown at random, when the submit button is pressed, an alert is shown saying if the answer is correct or not. I want there to be different messages for the alert such as one time it shows one message, then the next time it shows a different message at random. How would I program this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 .h 中:
在您的 .m 中
当您需要警报时:
In your .h:
In your .m
When you need an alert:
为项目定义以下宏:
对于 msg 部分,尝试使用具有随机索引的数组
,这可以用作简单调用:
define the following macro for the project:
for the msg section as try a Array with random Index
Which could be used as simple call: