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
hakuba.registerCellsByNib(HomeHeaderViewCell.self,HomeTopEvaluateViewCell.self) error: Generic parameter 'T' could not be inferred
class HomeHeaderViewCell: Cell,CellType {
typealias CellModel = HomeHeaderViewModel override func awakeFromNib() { super.awakeFromNib() // Initialization code } override func configure() { } override func setSelected(selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state }
} class HomeTopEvaluateViewCell: Cell,CellType {
typealias CellModel = HomeTopEvaluateViewModel override func awakeFromNib() { super.awakeFromNib() // Initialization code } override func setSelected(selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state }
}
The text was updated successfully, but these errors were encountered:
@bijy Sorry, i forgot to remove it. Please use the following way to register multiple cells:
hakuba .registerCellByNib(Cell1) .registerCellByNib(Cell2)
Sorry, something went wrong.
No branches or pull requests
hakuba.registerCellsByNib(HomeHeaderViewCell.self,HomeTopEvaluateViewCell.self)
error: Generic parameter 'T' could not be inferred
class HomeHeaderViewCell: Cell,CellType {
}
class HomeTopEvaluateViewCell: Cell,CellType {
}
The text was updated successfully, but these errors were encountered: