I'm looking to swap out the AFImageCache
used by default in the UIImageView+AFNetworking
category for something that's disk based and that can managed a little more accurately (something like NSURLCache). Unfortunately, since UIImageView+AFNetworking
is a category and not a subclass, I can't just override af_sharedImageCache with a sublclass of UIImageView
OR another category.
Is there any other way to achieve this functionality without copying and pasting most of UIImageView+AFNetworking
into my own subclass?