0

ボタンが押されたときに iPhone 画面の周りに UIButton をランダムに配置する必要があります。私はこれをうまく行うことができますが、UIButton が端で切り取られているように見えることがあります。だから私の質問は、どのようにarc4randomが動作する座標の範囲を設定できますか? (例: x:75 y:75 から x:345 y:405 までのみ)

- (IBAction) stackOverflowExampleButtonPressed
{  
    CGPoint position;
    position.x = (arc4random() % (75)) + 345;
    position.y = (arc4random() % (75)) + 405;

    anExampleButton.center = position;
}

助けてくれてありがとう!

4

2 に答える 2