We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e554d5 commit 30a7553Copy full SHA for 30a7553
Fitfty/Projects/Setting/Sources/Admin/Views/ReportListCell.swift
@@ -85,10 +85,10 @@ final class ReportListCell: UITableViewCell {
85
}
86
87
@objc func didTapCheckbox(_ sender: Any?) {
88
- if !checkBoxButton.isSelected {
89
- checkBoxButton.setImage(CommonAsset.Images.btnCheckBoxSelected.image, for: .normal)
90
- } else {
+ if checkBoxButton.isSelected {
91
checkBoxButton.setImage(CommonAsset.Images.btnCheckBoxUnSelected.image, for: .normal)
+ } else {
+ checkBoxButton.setImage(CommonAsset.Images.btnCheckBoxSelected.image, for: .normal)
92
93
94
0 commit comments