File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
TiltUp/Classes/Screens/SingleSelection Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 11PODS:
22 - SwiftLint (0.34.0)
3- - TiltUp (0.4.2 )
4- - TiltUpTest (0.4.2 )
3+ - TiltUp (0.4.3 )
4+ - TiltUpTest (0.4.3 )
55
66DEPENDENCIES:
77 - SwiftLint
@@ -20,8 +20,8 @@ EXTERNAL SOURCES:
2020
2121SPEC CHECKSUMS:
2222 SwiftLint: 79d48a17c6565dc286c37efb8322c7b450f95c67
23- TiltUp: 0361700e865c524c86efee1796d12e0c1fcf87e2
24- TiltUpTest: 6e9a851cb28630e793710fdeb03341bc4c894521
23+ TiltUp: 2b6d8db8ee1152dd4a95b38fc6b391cd791dc936
24+ TiltUpTest: 7cbd1a189fa2055d561105a92c23af6867b2a1ed
2525
2626PODFILE CHECKSUM: c3ad4c36e5d17d3b4a90d5cf5f5b66d3221db5dd
2727
Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = 'TiltUp'
11- s . version = '0.4.2 '
11+ s . version = '0.4.3 '
1212 s . summary = 'Official Clutter SDK in Swift to access core iOS features.'
1313
1414# This description is used to generate tags and improve search results.
Original file line number Diff line number Diff line change @@ -124,12 +124,10 @@ private extension SingleSelectionController {
124124 cell. textLabel? . text = row. value. singleSelectionableRow. title
125125 cell. detailTextLabel? . text = row. value. singleSelectionableRow. subtitle
126126
127- if row. isSelected {
128- cell. accessoryType = . checkmark
129- } else if row. value. singleSelectionableRow. hasNextStep {
127+ if row. value. singleSelectionableRow. hasNextStep {
130128 cell. accessoryType = . disclosureIndicator
131129 } else {
132- cell. accessoryType = . none
130+ cell. accessoryType = row . isSelected ? . checkmark : . none
133131 }
134132 }
135133}
Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = 'TiltUpTest'
11- s . version = '0.4.2 '
11+ s . version = '0.4.3 '
1212 s . summary = 'Official Clutter SDK in Swift to access core iOS test helpers.'
1313
1414# This description is used to generate tags and improve search results.
You can’t perform that action at this time.
0 commit comments