切换到 xcode 中随机选择的视图
利用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当前视图的新视图(随机选择)子视图或应用程序中的某些视图?
对于子视图:您可以使用每个视图的 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.