Skip to content

Commit c30c0f4

Browse files
committed
Allow change properties in CardView
1 parent 672a575 commit c30c0f4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

WOWCardStackView.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'WOWCardStackView'
11-
s.version = '0.1.1'
11+
s.version = '0.1.2'
1212
s.summary = 'Swapable Card Stack View in Swift 3.0.'
1313

1414
# This description is used to generate tags and improve search results.
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
1919

2020
s.description = <<-DESC
21-
Swapable Card Stack View in Swift 3.0. It's able to use in Storyboard and similar to UITableView.
21+
Swapable Card Stack View in Swift 3.0. It's able to use in Storyboard and Programatically and it's similar to UITableView.
2222
DESC
2323

2424
s.homepage = 'https://github.com/zhouhao27/WOWCardStackView'

WOWCardStackView/Classes/CardView.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ open class CardView: UIView {
2020
weak var delegate: CardViewDelegate?
2121

2222
@IBInspectable
23-
var borderColor: UIColor = UIColor.clear {
23+
public var borderColor: UIColor = UIColor.clear {
2424
willSet {
2525
self.layer.borderColor = newValue.cgColor
2626
}
2727
}
2828

2929
@IBInspectable
30-
var borderWidth: CGFloat = 0 {
30+
public var borderWidth: CGFloat = 0 {
3131
willSet {
3232
self.layer.borderWidth = newValue
3333
}
3434
}
3535

3636
@IBInspectable
37-
var isShadowed: Bool = false {
37+
public var isShadowed: Bool = false {
3838
willSet {
3939
if newValue {
4040
self.layer.shadowColor = UIColor.black.cgColor

0 commit comments

Comments
 (0)