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
@discussion Namespace is responsible for isolation of dirrerent image cache instances on file system level. Namespace should be unique across application.
@property (nonatomic, weak) id <FICImageCacheDelegate> delegate;
38
46
47
+
///---------------------------------------
48
+
/// @name Creating Image Cache instances
49
+
///---------------------------------------
50
+
51
+
/**
52
+
Returns new image cache.
53
+
54
+
@return A new instance of `FICImageCache`.
55
+
56
+
@param nameSpace The namespace that uniquely identifies current image cahce entity. If no nameSpace given, default namespace will be used.
57
+
58
+
@note Fast Image Cache can either be used as a singleton for convenience or can exist as multiple instances.
59
+
However, all instances of `FICImageCache` will make use same dispatch queue. To separate location on disk for storing image tables namespaces are used.
@note Fast Image Cache can either be used as a singleton for convenience or can exist as multiple instances. However, all instances of `FICImageCache` will make use of
49
-
shared resources, such as the same dispatch queue and the same location on disk for storing image tables.
75
+
@note Shared instance always binded to default namespace.
0 commit comments