gpt4 book ai didi

ios - 从数组中加载图像并一次显示一个

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:11:00 25 4
gpt4 key购买 nike

我想在一个 ImageView 中显示图像,当调用 IBAction 时它显示下一张图像。到目前为止,这是我的代码

- (void)viewDidLoad
{
[super viewDidLoad];
//init array with images what you have
images = [[NSArray alloc] initWithObjects:@"IMG_2605.JPG",@"IMG_2627.JPG",@"IMG_2597.JPG",@"IMG_2613.JPG",@"IMG_2596.JPG ",nil];
indexImage = 0;

}

-(IBAction)button1:(id)sender {
NSString *imageName = [images objectAtIndex:indexImage];
self.image1.image = [UIImage imageNamed:imageName];
self.image1.image = [images objectAtIndex:indexImage];
indexImage++;

NSLog(@"B = 1");
}

最佳答案

您需要获取实际图像,而不是图像的文件名。如果这些图像在您的包中,您可以使用方法 imageNamed: 来获取图像:

NSString *imageName = [images objectAtIndex:indexImage];
self.image1.image = [UIImage imageNamed:imageName];

关于ios - 从数组中加载图像并一次显示一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15556526/

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