按下按钮时,我需要在 iPhone 屏幕周围随机放置一个 UIButton。我可以成功地做到这一点,但我的 UIButton 有时会出现在边缘被切断。所以我的问题是,如何为 arc4random 设置坐标范围?(例如,仅从 x:75 y:75 到 x:345 y:405。)如果有任何帮助,这是我的 IBAction:
- (IBAction) stackOverflowExampleButtonPressed
{
CGPoint position;
position.x = (arc4random() % (75)) + 345;
position.y = (arc4random() % (75)) + 405;
anExampleButton.center = position;
}
谢谢你的帮助!