Compare commits

..
7 Commits
Author SHA1 Message Date
Alex.k 045d11c6b1 added public method commonInit 2016-06-09 14:21:52 +03:00
Alex.k 457fd53024 update podspec 2016-06-09 12:55:44 +03:00
Alex.k ffbfd5f85b add public init 2016-06-09 12:55:02 +03:00
Alex.k 26f9ffab71 update podspec 2016-06-09 12:30:47 +03:00
Alex.k c44863dc7a programmatically support 2016-06-09 12:29:32 +03:00
Alex.k 3264053f14 podspec updated 2016-06-06 17:26:40 +03:00
Alex.k 4c6cb28aaa update podspec 2016-06-06 15:15:11 +03:00
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FoldingCell'
s.version = '0.8.1'
s.version = '0.8.5'
s.summary = 'UITableViewCell with folding animation.'
s.homepage = 'https://github.com/Ramotion/folding-cell'
s.license = 'MIT'
@@ -54,9 +54,20 @@ public class FoldingCell: UITableViewCell {
// MARK: life cicle
required public init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override public func awakeFromNib() {
super.awakeFromNib()
commonInit()
}
/**
Call this method in methods init(style: UITableViewCellStyle, reuseIdentifier: String?) after creating Views
*/
public func commonInit() {
configureDefaultState()
self.selectionStyle = .None
@@ -64,6 +75,7 @@ public class FoldingCell: UITableViewCell {
containerView.layer.cornerRadius = foregroundView.layer.cornerRadius
containerView.layer.masksToBounds = true
}
// MARK: configure