请帮我 !我制作了一个像幻灯片放映一样的应用程序,带有后退、上一个按钮来逐个更改图像。但是当我使用大图像时它会崩溃。现在我使用 64 jpg 图片,大小~20kb/1pic。
救救我,否则我死!(请您添加 nick hoangtuanfithou)这样的代码:
//初始化图像数组
-(void)InitImageArray1
{
myAnimationImages1 = [[NSMutableArray alloc] init];
for ( int i = 0; i < 24; i++ )
{
NSAutoreleasePool *poolArray=[[NSAutoreleasePool alloc] init];
NSString *fileName = [NSString stringWithFormat:@"001 (%d)",i];
image = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:fileName ofType:@”jpg”]];
[myAnimationImages1 addObject:image];
[poolArray release];
}
}
//改变图像 self.mainImage.image = [self.myAnimationImages1 objectAtIndex:animationImageArrIndex];