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
For tables we provide:
var willBeginEditing: WillBeginEditingClosure? { return nil } var didEndEditing: DidEndEditingClosure? { return nil } var editingStyle: UITableViewCellEditingStyle { return .none } var shouldHighlight: Bool { return true } var commitEditingStyle: CommitEditingStyleClosure? { return nil } var didSelectClosure: DidSelectClosure? { return nil } var accessoryButtonTappedClosure: AccessoryButtonTappedClosure? { return nil } var shouldIndentWhileEditing: Bool { return false }
For collections we provide:
var shouldHighlight: Bool { return true } var didSelectClosure: DidSelectClosure? { return nil } var didDeselectClosure: DidDeselectClosure? { return nil }
Obviously, TableViewModel is further along, however, both should include willDisplay..., didEndDisplaying..., etc. hooks
TableViewModel
willDisplay...
didEndDisplaying...
The text was updated successfully, but these errors were encountered:
bumping this out of 0.1.2 for now
Sorry, something went wrong.
No branches or pull requests
For tables we provide:
For collections we provide:
Obviously,
TableViewModel
is further along, however, both should includewillDisplay...
,didEndDisplaying...
, etc. hooksThe text was updated successfully, but these errors were encountered: