iOS implements the function of having pictures locally and then getting pictures from locally. The code is as follows:
//Save the image locally+ (void)SaveImageToLocal:(UIImage*)image Keys:(NSString*)key { NSUserDefaults* preferences = [NSUserDefaults standardUserDefaults]; //[preferences persistentDomainForName:LocalPath]; [preferences setObject:UIImagePNGRepresentation(image) forKey:key]; } //Is there any relevant pictures locally+ (BOOL)LocalHaveImage:(NSString*)key { NSUserDefaults* preferences = [NSUserDefaults standardUserDefaults]; //[preferences persistentDomainForName:LocalPath]; NSData* imageData = [preferences objectForKey:key]; if (imageData) { return YES; } return NO; } //Get pictures from local+ (UIImage*)GetImageFromLocal:(NSString*)key { NSUserDefaults* preferences = [NSUserDefaults standardUserDefaults]; //[preferences persistentDomainForName:LocalPath]; NSData* imageData = [preferences objectForKey:key]; UIImage* image; if (imageData) { image = [UIImage imageWithData:imageData]; } else { NSLog(@"Not obtained pictures from local"); } return image; }
The above is all the content of this article. I hope that the content of this article will help you study or work. I also hope to support me more!