-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathHTKDragAndDropCollectionViewLayout.podspec
More file actions
executable file
·17 lines (17 loc) · 1.28 KB
/
HTKDragAndDropCollectionViewLayout.podspec
File metadata and controls
executable file
·17 lines (17 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "HTKDragAndDropCollectionViewLayout"
s.version = "0.1.4"
s.summary = "UICollectionViewLayout subclass that provides Drag and Drop functionality. Unique in that it does not use a 'ghost' or 'dummy' cell. iOS 7+."
s.description = <<-DESC
Custom UICollectionViewLayout that works together with a custom UICollectionViewCell to provide drag and drop for a UICollectionView. Works just like UITableView drag and drop. What's unique about this approach is that it does not need to create a "ghost" or "dummy" cell to provide the drag and drop functionality. I believe this method is simpler and less complex for the majority of use cases.
DESC
s.homepage = "http://www.github.com/henrytkirk/HTKDragAndDropCollectionViewLayout"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "Henry T Kirk" => "henrytkirk@gmail.com" }
s.social_media_url = "http://twitter.com/henrytkirk"
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/henrytkirk/HTKDragAndDropCollectionViewLayout.git", :tag => "v0.1.3" }
s.source_files = "HTKDragAndDropCollectionViewLayout/*.{h,m}"
s.requires_arc = true
end