Compare commits

...
5 Commits
Author SHA1 Message Date
Alex.k e5c63c9812 Fixes #5 2016-02-05 11:04:55 +03:00
Alex.k 4ec5646fa1 Revert "Fixes #45"
This reverts commit 20d7be5ca0.
2016-02-05 11:03:06 +03:00
Alex.k 20d7be5ca0 Fixes #45 2016-02-05 11:02:30 +03:00
Alex 0871b243b3 Update README.md 2016-02-04 17:11:35 +03:00
Alex.k d41c599568 update podspect 2016-02-04 17:08:45 +03:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FoldingCell'
s.version = '0.4'
s.version = '0.5'
s.summary = 'UITableViewCell with folding animation.'
s.homepage = 'https://github.com/Ramotion/folding-cell'
s.license = 'MIT'
@@ -27,8 +27,8 @@ public class FoldingCell: UITableViewCell {
public typealias CompletionHandler = () -> Void
@IBOutlet weak var containerView: UIView!
@IBOutlet weak var foregroundView: RotatedView!
@IBOutlet weak public var containerView: UIView!
@IBOutlet weak public var foregroundView: RotatedView!
var animationView: UIView?
@IBInspectable var itemCount: NSInteger = 2 //count of folding
+1 -1
View File
@@ -18,7 +18,7 @@ Just add the FoldingCell.swift file to your project.
or use [CocoaPods](https://cocoapods.org) with Podfile:
``` ruby
pod 'FoldingCell', '~> 0.3'
pod 'FoldingCell', '~> 0.5'
```