Skip to content

Commit

Permalink
Add ADBBackgroundCells spec 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodebortoli committed Feb 25, 2013
1 parent 28615a0 commit 608e99d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ADBBackgroundCells/1.1.0/ADBBackgroundCells.podspec
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 608e99d

Please sign in to comment.