UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

How can I get this custom button type to become enabled again?

Forums > SwiftUI

I’m using a custom button type that is disabled when pressed, amongst other things. I’m able to successfully disable the buttons, but even though the dynamic shouldBeDisabled property is set back to false at a later time, the buttons remained permanently disabled.

Note: Via different outputs to the console, I’m able to confirm that shouldBeDisabled is indeed being changed to false, and the buttons are not redrawn.

Struct CustomButton: View {

let name:String
Let indexInParentView: Int
@Binding var disabledButtonIndexes: [Int]
@State Var shouldBeDisabled = false

Var body -> some View {

Button(name) {
shouldBeDisabled = true
disabledButtonIndexes.append(indexInParentView)
}
.disabled(shouldBeDisabled)
}//body
}//struct 

Why would the button successfully become disabled, but not be enabled again when I set shouldBeDisabled back to false?

2      

How is it being set back to false?

2      

I apologize if this code is ugly. I'm completely-blind and just finished 100 Days of SwiftUI about a month ago.

/* I was trying to keep my code sample small to keep the post short I instantiate these buttons in a parent view, where I was originally initializing every button needed and storing them in an array. I was told in some Swift Facebook groups that storing an array of these buttons in the parent view is bad practice, so I’ve track these buttons by their data instead. I’ll include the actual code this time, so I apologize for the lengthier post.

First, here’s the button type:

Struct CustomButton: View {

@ObservedObject var hiddenButtonData: HiddenButtonData
private(set) var name: String
@State var shouldBeHidden = false {
didSet {
print("shouldBeHidden changed to \(shouldBeHidden) for button with name \(name)")
if shouldBeHidden == true{
hiddenButtonData.add(dataFrom: self)
}//conditional
}//didset
}//shouldBeHidden

//These two values are set in letterGroupButton view so we can track where the button needs to be added back-in when the currentSpelling is cleared.
let parentRowIndex: Int
let indexInParentRow: Int

 init(allSettings: AllSettings, hiddenButtonData: HiddenButtonData, name: String, parentRowIndex: Int, indexInParentRow: Int) {
self.allSettings = allSettings
self.hiddenButtonData = hiddenButtonData
self.name = name.uppercased()
self.parentRowIndex = parentRowIndex
self.indexInParentRow = indexInParentRow
}//init

var body: some View {

Button(self.name) {
hiddenButtonData.add(dataFrom: self)
shouldBeHidden = true
}//Button
 .disabled(shouldBeHidden)
.accessibility(hidden: shouldBeHidden)
}//body
}//struct

Now, here's the class that tracks hidden button data

class HiddenButtonData: ObservableObject {
@Published private(set) var names = [String]()
@Published private(set) var coordinates = [[Int: Int]]()

//Methods

func add(dataFrom: LetterGroupButton) {
names.append(dataFrom.name)
coordinates.append([dataFrom.parentRowIndex: dataFrom.indexInParentRow])
print("HiddenButtonData just added \(dataFrom.name) to itself")
}//add

func clearStoredData() {
names.removeAll()
coordinates.removeAll()
}//clearStoredData
}//class

And finally, here's the parent view where the buttons are instantiated, and where I attempt to enable some of the buttons again.


struct ContentView: View {

@StateObject private var hiddenButtonData = HiddenButtonData()

var body -> some View {
List {

ForEach(initializeAllButtons(), id: \.self.indexInParentRow) { buttonData in
LetterGroupButton(allSettings: allSettings, hiddenButtonData: hiddenButtonData, name: buttonData.name, parentRowIndex: dataSet.indexInArrayOfRows, indexInParentRow: buttonData.indexInParentRow, currentSpellingInActivePuzzle: $currentSpelling)
}//loop
}//List
.background(.clear)

Button("Restore Button Visibility") {
restoreVisibilityOfHiddenButtons()
}//button
}//body

//methods
func initializeAllButtons() -> [CustomButton] {
// some code that initializesCustomButton instances from JSON data
}//initializeAllButtons
func restoreVisibilityOfHiddenButtons() {
print("calling restore visibility")
for dictionary in hiddenButtonData.coordinates {
//These key: value pairs represent the rows index, then the button index in the row
for (key, value) in dictionary {
rowsOfButtonsData[key].allButtonData[value].setShouldBeHidden(false)
print("restoreVisibility should have just changed shouldBeHidden for \(rowsOfButtonsData[key].allButtonData[value].name)")
}//nested loop
}//loop

hiddenButtonData.clearStoredData()
}//restoreVisibilityOfHiddenButtons

}//struct

*/

2      

Hacking with Swift is sponsored by RevenueCat

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.