You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[**1.1**](https://github.com/path/FastImageCache/releases/tag/1.1) (10/22/2013): Added ARC support and more robust Core Animation byte alignment
33
33
-[**1.2**](https://github.com/path/FastImageCache/releases/tag/1.2) (10/30/2013): Added support for image format styles and canceling image requests
34
+
-[**1.3**](https://github.com/path/FastImageCache/releases/tag/1.3) (03/30/2014): Significant bug fixes and performance improvements.
34
35
35
36
## What Fast Image Cache Does
36
37
@@ -128,6 +129,12 @@ For example, if an original image is resized by an entity to create a thumbnail
128
129
129
130
Image format families can be specified to efficiently make use of a single source image. See [Working with Image Format Families](#working-with-image-format-families) for more information.
130
131
132
+
### Data Protection
133
+
134
+
In iOS 4, Apple introduced data protection. When a user's device is locked or turned off, the disk is encrypted. Files written to disk are protected by default, although applications can manually specify the data protection mode for each file it manages. With the advent of new background modes in iOS 7, applications can now execute in the background briefly even while the device is locked. As a result, data protection can cause issues if applications attempt to access files that are encrypted.
135
+
136
+
Fast Image Cache lets your specify the data protection mode each of its image tables should use. Be aware that enabling data protection for image table files means that Fast Image Cache might not be able to read or write image data from or to these files when the disk is encrypted.
137
+
131
138
## Requirements
132
139
133
140
Fast Image Cache requires iOS 6.0 or greater and relies on the following frameworks:
@@ -166,13 +173,18 @@ Before the image cache can be used, it needs to be configured. This must occur e
166
173
Each image format corresponds to an image table that the image cache will use. Image formats that can use the same source image to render the images they store in their image tables should belong to the same [image format family](#working-with-image-format-families). See [Image Table Size](#image-table-size) for more information about how to determine an appropriate maximum count.
0 commit comments