gpt4 book ai didi

ios - 通过增加标签计数来添加图像

转载 作者:行者123 更新时间:2023-12-01 18:46:57 26 4
gpt4 key购买 nike

在这里,当按钮点击标签计数是递增和递减。当标签计数递增时,图像将按相应的计数添加。这里我的代码用于递增标签计数

if (counter >= 9 )
return;
[_count setText:[NSString stringWithFormat:@"%d",++counter]];

但我需要在增加标签计数的同时显示,然后自动一张一张地增加图像。像这样

enter image description here

你能帮我如何实现吗,谢谢。

最佳答案

添加 UIScrollView代替您要显示图像的位置。单击“+”按钮时,通过传递“计数器”值调用以下方法。

-(void)addImage:(int) count {
UIScrollView * scView = [[UIScrollView alloc] init];
scView.frame = CGRectMake(30, 60, self.view.frame.size.width, 60);
UIButton * btn;
UIImageView * imgV;
float imgWidth = 44;
for(int i=0;i<count;i++) {
imgV = [[UIImageView alloc] init];
imgV.frame = CGRectMake(i*imgWidth, 0, imgWidth, 44);
imgV.image = [UIImage imageNamed:@"gitar"];
[scView addSubview:imgV];
}
[scView setContentSize:CGSizeMake(imgWidth*count, 50)];
[scView setBackgroundColor:[UIColor redColor]];
[self.view addSubview:scView];
}

- (IBAction)descrese:(id)sender {
counter -= 1;
[self addImage:counter];
}

- (IBAction)btnTap:(id)sender {
counter += 1;
[self addImage:counter];
}

这会在水平 ScrollView 中添加任意数量的图像。

关于ios - 通过增加标签计数来添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34854980/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com