blob: 66952ca923842adc2fd0a7414047d6258cab46b0 [file] [log] [blame]
{
"name": "CZSharedImage",
"version": "0.4.0",
"summary": "Optimize iOS image loading by sharing UIImage objects.",
"description": " On iOS, the method UIImage#imageNamed: optimizes image loading in two ways:\n\n 1. It caches recently loaded UIImage objects to avoid reloading them.\n 2. Multiple requests for the same named image get a reference to the same UIImage object.\n\n The first optimization saves (loading) time at the cost of (memory) space.\n\n For images that currently exist as UIImage objects in the running application, the second optimization saves both time and space; there's no need to load or decode the image, and there aren't duplicate copies each occupying memory.\n\n CZSharedImage is a tiny library that provides the second optimization for images loaded using UIImage#imageWithContentsOfFile: and UIImage#imageWithData:.\n",
"homepage": "https://github.com/mjmsmith/czsharedimage",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Mark Smith": "mark@camazotz.com"
},
"platforms": {
"ios": "6.0"
},
"source": {
"git": "https://github.com/mjmsmith/czsharedimage.git",
"tag": "v0.4.0"
},
"source_files": "CZSharedImage",
"requires_arc": true
}