ios - 在 Objective-C xcode 中以编程方式生成按钮而不重叠
<p><p>我花了几个小时试图完成我认为很简单的任务。我正在尝试以编程方式在我的 iphone 屏幕上生成 10 个未旋转的方形按钮,而它们不会重叠。每当我得到我认为正确的代码时,应用程序就会挂起。这是我目前正在尝试做的事情:</p>
<p>首先我有一个 while 循环,它不断尝试生成按钮,直到有 10 个(因此挂起)。这个循环计算一个随机的宽度和高度来生成按钮。</p>
<p>然后我尝试检查该按钮是否会导致与当前放置在屏幕上的任何按钮重叠(注意:这是为了提高效率而进行的间隔,但已经过测试)。如果按钮可能重叠,我“继续;”,但如果没有,则生成按钮。</p>
<p>生成按钮后,我将不应放置其他按钮的坐标放入其特定的基于轴的数组中,以检查前面的循环。</p>
<p>这是我的代码:</p>
<pre><code>- (void)addNumbers{
int width = [ bounds].size.width - 70;
int height = [ bounds].size.height - 110;
NSMutableArray* xarray = [ init];
NSMutableArray* yarray = [ init];
int buttons = 0;
while(buttons < 10) {
int x = 10*floor(10+arc4random_uniform(width)/10);
int y = 10*floor(50+arc4random_uniform(height)/10);
NSLog(@"The coords are: %i, %i",x,y);
if(] && ]){
NSLog(@"Triggered");
continue;
}
;
buttons++;
for(int i = 0; i < 6; i++){
];
];
];
];
}
}
}
- (void)generateButton:(int)x :(int)y :(int)num{
UIButton * btn = ;
btn.frame = CGRectMake(x, y, 60, 60);
forState:UIControlStateNormal];
];
btn.titleLabel.font = ;
forState:UIControlStateNormal];
;
;
}
</code></pre>
<p>请帮帮我:'(</p>
<p>我也是 Objective-C 的新手(可能很明显),所以请随意评论我可以改进我的代码或效率的任何方式。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我会给你我会做的。</p>
<pre><code>-(BOOL)isButtonOverlapping:(NSArray *)array button:(UIButton *)btn {
for (UIButton *btn_ in ) {
if (CGRectIntersectsRect(btn_, btn)) return YES;
}
return NO;
}
-(void)addNumbers {
int width = [ bounds].size.width - 70;
int height = [ bounds].size.height - 110;
NSMutableArray *buttonsArray = ;
for (short button = 0; button < 10; button++) {
UIButton *btn = ;
do {
btn.center = CGPointMake(rand() % width, rand() % height);
} while ();
;
}
}
-(UIButton *)generateButton:(int)x :(int)y :(int)num {
UIButton * btn = ;
btn.frame = CGRectMake(x, y, 60, 60);
forState:UIControlStateNormal];
];
btn.titleLabel.font = ;
forState:UIControlStateNormal];
;
;
return btn;
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 在 Objective-C xcode 中以编程方式生成按钮而不重叠,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/23965532/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/23965532/
</a>
</p>
页:
[1]