You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: class TestTableView: SLExpandableTableView, SLExpandableTableViewDelegate, SLExpandableTableViewDatasource
Looks to be the appropriate way to implement UITableView Delegate and DataSource but unable to set them. testTableView.delegate = testTableView wants me to impossibly cast to SLExpandableDelegate
Or implementing the following also creates an error class TestTableView: SLExpandableTableView, UITableViewDelegate, UITableViewDataSource
The text was updated successfully, but these errors were encountered:
Example:
class TestTableView: SLExpandableTableView, SLExpandableTableViewDelegate, SLExpandableTableViewDatasource
Looks to be the appropriate way to implement UITableView Delegate and DataSource but unable to set them.
testTableView.delegate = testTableView
wants me to impossibly cast to SLExpandableDelegateOr implementing the following also creates an error
class TestTableView: SLExpandableTableView, UITableViewDelegate, UITableViewDataSource
The text was updated successfully, but these errors were encountered: