用的sdwebImage
#import <SDWebImage/UIButton+WebCache.h>
首先我加载图形验证码地址在一个按钮上,作为按钮的背景图
[self.myButton sd_setBackgroundImageWithURL:[NSURL URLWithString:@"这里要写你的图形验证码全路径地址"] forState:UIControlStateNormal];
然后呢,我点击按钮的单击事件
{
然后呢 清理下缓存
[[SDImageCache sharedImageCache] clearDisk];
[[SDWebImageManager sharedManager].imageCache clearMemory];
然后呢在设置下按钮背景
[self.myButton sd_setBackgroundImageWithURL:[NSURL URLWithString:@"这里要写你的图形验证码全路径地址"] forState:UIControlStateNormal];
}