0

大家好,我正在制作一个 Xcode 应用程序,但现在卡住了 2 天

在我的应用程序中,我必须按照用户声明的数量创建一些图像(哪些球)。

例如,如果用户说让 10 10 个球应出现在同一屏幕上的随机位置,我知道随机位置但不知道该怎么做......我如何连接到界面生成器?

试过这个 1.h UIImageView *c[100];

1米

for (int i = 0; i < "users value" ; i++) {
    float x = (float)(67 + ((95 + 22) * i));
    UIImageView *c[i] = [[UIImageView alloc] 
                          initWithFrame:CGRectMake(x, 20.0f, 95.0f, 149.0f)];

    [ballsView[i]setImage:[UIImage imageNamed:@"1.png"]];
    ballsView[i].opaque = YES;        
    ballsView[i].hidden = NO; /* change to YES for distribution */        
    }
4

1 回答 1

-1

用这个。希望有帮助

for (int i = 0; i < "users value" ; i++) 
{
    float x = (float)(67 + ((95 + 22) * i));
    UIImageView *c[i] = [[UIImageView alloc] 
                      initWithFrame:CGRectMake(x, 20.0f, 95.0f, 149.0f)];
    c[i].image=[UIImage imageNamed:@"1.png"]];
    [ballsView[i] addSubView:c[i]];
    ballsView[i].opaque = YES;        
    ballsView[i].hidden = NO; /* change to YES for distribution */        
}
于 2012-08-06T07:47:58.860 回答