我正在尝试将一些对象放在屏幕上的随机位置。
我使用 arc4random() 生成一个新的随机数。
但似乎该功能无法正常工作,这是代码和跟踪结果:
Code :
UIView *stateView = [[UIView alloc] initWithFrame:CGRectMake( (arc4random()%700)-100 , (20 * 91) + 378 + ((arc4random()%600)+200), 325 , 188)];
NSLog(@"Note %d : X = %f , Y = %f",i,stateView.frame.origin.x,stateView.frame.origin.y);
**********************
NSLog Output :
Note 5 : X = 4294967040.000000 , Y = 2552.000000
这是一个错误还是我对生成器做错了?