UIimageView图片加载

    for (int i = 0; i<=numberOfImage; i++)
    {
        [[NSBundle mainBundle] resourcePath];
        
        path=[[NSBundle mainBundle]pathForResource:[NSString stringWithFormat:@"%@_%d.jpg",nameOfAnimation,i] ofType:nil];
        
        UIImage * image = [UIImage imageWithContentsOfFile:path];
        
        [imageArray addObject:image];
    }

使用上述方法加载图片时,能偶节约内存!!!

本文出自 “网络学习总结” 博客,转载请与作者联系!

你可能感兴趣的:(图片)