We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import ALRadioButtons
class RadioButtonsTableViewCell: UITableViewCell {
@IBOutlet var radioButtons: ALRadioGroup! lazy var radioGroup = ALRadioGroup(items: [ .init(title: "title1", subtitle: "subtitle1"), .init(title: "title2", subtitle: "subtitle2", detail: "Detail"), .init(title: "title3"), ], style: .grouped) override func awakeFromNib() { super.awakeFromNib() radioButtons = ALRadioGroup(items: [ .init(title: "title1"), .init(title: "title2"), .init(title: "title3") ], style: .grouped) radioButtons.axis = .vertical radioButtons.selectedIndex = 0 radioButtons.addTarget(self, action: #selector(radioGroupSelected(_:)), for: .valueChanged) radioButtons.allowDeselection = true }
}
Can you please help me where can I did wrong ! ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
import ALRadioButtons
class RadioButtonsTableViewCell: UITableViewCell {
}
Can you please help me where can I did wrong ! ?
The text was updated successfully, but these errors were encountered: