我有一个使用SDWebImage框架设置带有URL的UIButton图像的项目。我想检查图像名称是否与另一个变量中的图像名称匹配。这可能吗?
我尝试了以下操作,但这不起作用:
if ([self.profilePictureButton imageForState:(UIControlStateNormal) != nil]) {
NSLog(@"The imageForState UIControlStateNormal is not nil so it shows an image");
self.addPhotoLabel.text = @"";
}