切换到 xcode 中随机选择的视图

发布于 2024-09-08 10:57:07 字数 56 浏览 5 评论 0原文

利用 xcode 使用随机函数我想从一个视图切换到一个随机选择的新视图...有人能给我一些指导吗?

utilising xcode using the random function i want to switch to from a view to a randomly selected new view...can some one give me some direction.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

So要识趣 2024-09-15 10:57:08

当前视图的新视图(随机选择)子视图或应用程序中的某些视图?

对于子视图:您可以使用每个视图的 tag 属性,为其分配一个值,然后使用 viewWithTag: 来根据标签(=之前随机生成的数字)查找视图。

对于整个应用程序的视图:您为什么要做这样的事情?对我来说听起来并不完全是好的设计。

A new view (randomly selected) subview of the current view or some view across your application?

For subviews: you could use the tag property of every view, assign a value to it and use viewWithTag: to find a view based on the tag (= the randomly generated number from before).

For views across your app: Why would you want to do something like this? Doesn't sound exactly like good design to me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文