How to store images in cache?

前端 未结 2 782
南旧
南旧 2021-01-16 15:25

in iphone i have requirement of store image in cache .

but how i can store this in cache.

I know the folder path of cache. is this only way i have to WRITE

2条回答
  •  鱼传尺愫
    2021-01-16 16:16

    use this link..

    http://www.makebetterthings.com/iphone/image-caching-in-iphone-sdk/

    edited:
    get file path using this code and fatch the particular file :

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
    NSString *libraryDirectory = [paths objectAtIndex:0];
    

提交回复
热议问题