blob: c91c12d2cf0f5313ba3949f0e8133ed600d17792 [file] [log] [blame]
{
"name": "BDUIViewUpdateQueue",
"version": "0.1.3",
"summary": "A class helps queuing asynchronous updates of UITableView (or UICollectionView).",
"description": " When using UITableView or UICollectionView, asynchronous updating of your datasource and your view can be difficult without proper queuing. Sometimes upating these views can even crash your app (NSInternalInconsistencyException dreads). \n\n`BDUIViewUpdateQueue` uses GCD (`dispatch_queue_t`) to lock your view to a serial queue, then execute your block in the main queue. That way datasource will always sync up with the state of your UITableView or UICollectionView. Other views will also work.\n\n",
"homepage": "https://github.com/norsez/BDUIViewUpdateQueue",
"license": "MIT",
"authors": {
"Norsez Orankijanan": "norsez@gmail.com"
},
"source": {
"git": "https://github.com/norsez/BDUIViewUpdateQueue.git",
"tag": "0.1.3"
},
"platforms": {
"ios": "6.0"
},
"requires_arc": true,
"source_files": "Pod/Classes/**/*",
"resource_bundles": {
"BDUIViewUpdateQueue": [
"Pod/Assets/*.png"
]
}
}