File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
Pod ::Spec . new do |s |
10
10
s . name = 'WOWCardStackView'
11
- s . version = '0.1.1 '
11
+ s . version = '0.1.2 '
12
12
s . summary = 'Swapable Card Stack View in Swift 3.0.'
13
13
14
14
# This description is used to generate tags and improve search results.
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
18
18
# * Finally, don't worry about the indent, CocoaPods strips it!
19
19
20
20
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.
22
22
DESC
23
23
24
24
s . homepage = 'https://github.com/zhouhao27/WOWCardStackView'
Original file line number Diff line number Diff line change @@ -20,21 +20,21 @@ open class CardView: UIView {
20
20
weak var delegate : CardViewDelegate ?
21
21
22
22
@IBInspectable
23
- var borderColor : UIColor = UIColor . clear {
23
+ public var borderColor : UIColor = UIColor . clear {
24
24
willSet {
25
25
self . layer. borderColor = newValue. cgColor
26
26
}
27
27
}
28
28
29
29
@IBInspectable
30
- var borderWidth : CGFloat = 0 {
30
+ public var borderWidth : CGFloat = 0 {
31
31
willSet {
32
32
self . layer. borderWidth = newValue
33
33
}
34
34
}
35
35
36
36
@IBInspectable
37
- var isShadowed : Bool = false {
37
+ public var isShadowed : Bool = false {
38
38
willSet {
39
39
if newValue {
40
40
self . layer. shadowColor = UIColor . black. cgColor
You can’t perform that action at this time.
0 commit comments