File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ class ButtonPicker: UIButton {
13
13
static let buttonBorderSize : CGFloat = 68
14
14
}
15
15
16
- var configuration = ImagePickerConfiguration ( )
16
+ var imagePickerConfiguration = ImagePickerConfiguration ( )
17
17
18
18
lazy var numberLabel : UILabel = { [ unowned self] in
19
19
let label = UILabel ( )
20
20
label. translatesAutoresizingMaskIntoConstraints = false
21
- label. font = self . configuration . numberLabelFont
21
+ label. font = self . imagePickerConfiguration . numberLabelFont
22
22
23
23
return label
24
24
} ( )
@@ -29,7 +29,7 @@ class ButtonPicker: UIButton {
29
29
30
30
public init ( configuration: ImagePickerConfiguration ? = nil ) {
31
31
if let configuration = configuration {
32
- self . configuration = configuration
32
+ self . imagePickerConfiguration = configuration
33
33
}
34
34
super. init ( frame: . zero)
35
35
configure ( )
You can’t perform that action at this time.
0 commit comments