From 608e99d94fbefb1b55846038347b1b7d1fdf8220 Mon Sep 17 00:00:00 2001 From: Alberto De Bortoli Date: Mon, 25 Feb 2013 23:21:46 +0100 Subject: [PATCH] Add ADBBackgroundCells spec 1.1.0 --- ADBBackgroundCells/1.1.0/ADBBackgroundCells.podspec | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ADBBackgroundCells/1.1.0/ADBBackgroundCells.podspec diff --git a/ADBBackgroundCells/1.1.0/ADBBackgroundCells.podspec b/ADBBackgroundCells/1.1.0/ADBBackgroundCells.podspec new file mode 100644 index 000000000000000..0aec6c0dba745b3 --- /dev/null +++ b/ADBBackgroundCells/1.1.0/ADBBackgroundCells.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'ADBBackgroundCells' + s.version = '1.1.0' + s.platform = :ios, '5.0' + s.summary = 'ADBBackgroundCells allow lazy loading for UITableViewCell objects performing a long time job in background without blocking the UI.' + s.description = 'NSInvocationOperation are used under the hood in place of GCD (Grand Central Dispatch) since operations put in a NSOperationQueue object can be canceled. This threading fashion allows optimized long scrolling where a lot of cells are displayed and immediately reused/disappeared, without the obligation to execute the job of no more visible cells. ADBBackgroundCells are block-based and use Objective-C runtime.' + s.homepage = 'https://github.com/albertodebortoli/ADBBackgroundCells' + s.author = { 'Alberto De Bortoli' => 'albertodebortoli.website@gmail.com' } + s.source = { :git => 'https://github.com/albertodebortoli/ADBBackgroundCells.git', :tag => '1.1.0' } + s.license = { :type => 'New BSD License', :file => 'LICENSE.markdown' } + s.source_files = 'ADBBackgroundCells/*.{h,m}' + s.requires_arc = true +end