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 {
1313 static let buttonBorderSize : CGFloat = 68
1414 }
1515
16- var configuration = ImagePickerConfiguration ( )
16+ var imagePickerConfiguration = ImagePickerConfiguration ( )
1717
1818 lazy var numberLabel : UILabel = { [ unowned self] in
1919 let label = UILabel ( )
2020 label. translatesAutoresizingMaskIntoConstraints = false
21- label. font = self . configuration . numberLabelFont
21+ label. font = self . imagePickerConfiguration . numberLabelFont
2222
2323 return label
2424 } ( )
@@ -29,7 +29,7 @@ class ButtonPicker: UIButton {
2929
3030 public init ( configuration: ImagePickerConfiguration ? = nil ) {
3131 if let configuration = configuration {
32- self . configuration = configuration
32+ self . imagePickerConfiguration = configuration
3333 }
3434 super. init ( frame: . zero)
3535 configure ( )
You can’t perform that action at this time.
0 commit comments