我想显示一些图像,当图像不可用时,我想显示默认图像。使用分析功能时,我收到有关潜在泄漏的警告。我明白当使用 imageNamed 时没有分配内存,有什么好的解决方法?请参阅下面我的代码的一部分
if (!isMyFileThere){
image = [UIImage imageNamed:@"default.png"];
}
else{
image = [[UIImage alloc] initWithContentsOfFile:pngFilePath];
}