Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conditional Cells Improperly Updating #47

Open
mattjoers opened this issue May 19, 2020 · 0 comments
Open

Conditional Cells Improperly Updating #47

mattjoers opened this issue May 19, 2020 · 0 comments

Comments

@mattjoers
Copy link

I am trying to add some conditional logic in my data feed, here is how the sample data file looks:

ExampleData.swift:

public struct Item {
    var name: String
    var active: Bool
    var icon: String?
    var position: String?
    
    public init(name: String, active: Bool, icon: String?, position: String?) {
        self.name = name
        self.active = active
        self.icon = icon
        self.position = position
    }
}

public struct Section {
    var name: String
    var items: [Item]
    var collapsed: Bool
    
    public init(name: String, items: [Item], collapsed: Bool = false) {
        self.name = name
        self.items = items
        self.collapsed = collapsed
    }
}

public var sectionsData: [Section] = [
    Section(name: "Profile", items: [
        Item(name: "UsersFirstName", active: false,  icon: "none",  position: "left"),
        Item(name: "EmailAddress", active: false, icon: "none", position: "left"),
        Item(name: "Change your email", active: true, icon: "chevron", position: "left"),
        Item(name: "Change your password", active: true, icon: "chevron", position: "left")
    ]),
    Section(name: "Support", items: [
        Item(name: "Call us", active: true, icon: "call", position: "left"),
        Item(name: "Provide feedback", active: true, icon: "feedback", position: "left"),
        Item(name: "Help", active: true, icon: "help", position: "left")
    ]),
    Section(name: "Learn More Info", items: [
        Item(name: "Terms and Conditions", active: true, icon: "chevron", position: "left"),
        Item(name: "Version #.##.#", active: false, icon: "none", position: "center")
    ])
]

Then in the table, I'm trying to set the cells to have conditional formatting as depicted below (whether its active OR if the the text should be centered):

CollapsibleTableViewController.swift:

   // Cell
   override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell: CollapsibleTableViewCell = tableView.dequeueReusableCell(withIdentifier: "cell") as? CollapsibleTableViewCell ??
            CollapsibleTableViewCell(style: .default, reuseIdentifier: "cell")
        
        let item: Item = sections[indexPath.section].items[indexPath.row]
            print("items: \(item)")
        cell.nameLabel.text = item.name
        cell.accessoryView = UIImageView(image:UIImage(named: (item.icon ?? nil)!))
        
        if (item.icon == "none") {
            cell.nameLabel.textColor = UIColor(hex: 0xA9A9A9)
            cell.isUserInteractionEnabled = false
        }

        switch item.position {
        case "center":
            cell.nameLabel.textAlignment = .center
        case "left":
            cell.nameLabel.textAlignment = .left
        default:
            cell.nameLabel.textAlignment = .left
        }
    
        return cell
    }

However, when I run everything, it looks correct however, once I start expanding and collapsing the last section, the first item "Terms and Conditions" is not enabled.

Is there something I am missing, such as a "refresh" or am I not properly loading the data? Any assistance or suggestions would be greatly appreciated!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant