DenTelezhkin / DTTableViewManager

Protocol-oriented UITableView management, powered by generics and associated types.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ambiguous reference to member 'registerCellClass'

fatuhoku opened this issue · comments

class RecipeSearchResultsViewController: UITableViewController, DTTableViewManageable {

    override func viewDidLoad() {
        super.viewDidLoad()

        manager.startManagingWithDelegate(self)
        manager.registerCellClass(RecipeSearchResultCell) // error occurs here.
    }
}

@fatuhoku Does your cell class conform to ModelTransfer protocol? This is required for this method to work.