随机CGPointMake?
我怎样才能制作一个随机的CGPointMake,假设我创建了一个uiimage的出口并将其称为图像,image.center = CGPointMake(//随机,//随机)每次(NSTimer)
How can I make a random CGPointMake, say i created an outlet of a uiimage and called it image, image.center = CGPointMake (//random, //random) everytime second (NSTimer)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会在 stdlib.h 中使用 arc4random() 。它使用了比 rand() 更优越的算法。在手册页中查找该函数。然后,您需要根据两个轴所需的最大坐标来修改生成的值。
I'd use
arc4random()
in stdlib.h. This utilizes a much more superior algorithm thanrand()
. Look up this function in the man pages. You will then want to mod the generated values by the maximum coordinates that you want for both axes.您可以在 stdlib.h 中使用 rand() ,
如下所示:
you can use rand() in stdlib.h
something like:
使用
arc4random()
,你甚至不需要播种它。Use
arc4random()
, you don't even need to seed it.