我是Cocoa的新手,我现在希望将多个图像设置为图像 以下是代码段:
//--------------show rank 1 image-------------//
int rank1 = rank_fst5[0];
NSString *rank1_path = [NSString stringWithFormat:@"/Users/Desktop/gallery/%d.png",rank1];
NSImage *image1 = [[NSImage alloc] initWithContentsOfFile:rank1_path];
[imageRank1 setImage:image1];
//--------------show rank 2 image-------------//
int rank2 = rank_fst5[1];
NSString *rank2_path = [NSString stringWithFormat:@"/Users/Desktop/gallery/%d.png",rank2];
NSImage *image2 = [[NSImage alloc] initWithContentsOfFile:rank2_path];
[imageRank2 setImage:image2];
结果仅显示" imageRank1" 中的第一张图片。
如果我评论第一个节目图像代码,我可以得到第二个节目。但这两幅图像无法同时显示。
有人能帮帮我吗?感谢。