为按钮设置图像时,我使用stringWithFormat:
如下:
[buttonImage setImage:[ImgUtil image:[NSString stringWithFormat:@"myImage_%d.png", selectNum + 1 ]] ];
我想检查那个字符串。我想也许我可以从按钮中取回名称:
if (buttonImage.image == [UIImage imageNamed:@"myImage_2.png"]) {
NSLog(@"the name of the buttonImage is %@", buttonImage.image);
}
但这不起作用。我怎么看那个字符串?