Convert UIImage to NSData and save with core data

前端 未结 8 793
不知归路
不知归路 2021-01-30 18:43

I have a UIImageView whose image gets set via UIImagePicker

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPi         


        
8条回答
  •  一个人的身影
    2021-01-30 19:12

    Here is what I have done and its working for storing to nsdata.

    [productTypeSub setValue:[[NSData alloc] initWithContentsOfURL:[NSURL  URLWithString:url]] forKey:@"imgSmall"];
    

    and loading to image with this code

    ImgProductType.image= [[UIImage alloc] initWithData:productTypeSub.imgSmall];
    

提交回复
热议问题